commit 58ce6cb67b31d31a6ae0016401dab8840f2e9213 Author: Riceneeder <86492950+Riceneeder@users.noreply.github.com> Date: Thu Sep 1 20:38:13 2022 +0800 wewechat++ init 仓库提交至星火社区作品集 Signed-off-by: Riceneeder <86492950+Riceneeder@users.noreply.github.com> diff --git a/.babelrc b/.babelrc new file mode 100644 index 0000000..492a062 --- /dev/null +++ b/.babelrc @@ -0,0 +1,18 @@ +// NOTE: These options are overriden by the babel-loader configuration +// for webpack, which can be found in ~/build/webpack.config. +// +// Why? The react-transform-hmr plugin depends on HMR (and throws if +// module.hot is disabled), so keeping it and related plugins contained +// within webpack helps prevent unexpected errors. +{ + "presets": ["es2015", "react", "stage-0"], + "plugins": ["babel-polyfill", "transform-decorators-legacy"], + "env": { + "production": { + "presets": ["react-optimize"] + }, + "development": { + "presets": ["react-hmre"] + } + } +} diff --git a/.ctrlpignore b/.ctrlpignore new file mode 100644 index 0000000..f20ab5c --- /dev/null +++ b/.ctrlpignore @@ -0,0 +1,8 @@ +node_modules +ios +DS_Store +android +git +dist +release +__tests__ diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..d196c70 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,10 @@ + +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_style = space +indent_size = 4 +trim_trailing_whitespace = true +insert_final_newnewline = true diff --git a/.eslintignore b/.eslintignore new file mode 100644 index 0000000..c253d5d --- /dev/null +++ b/.eslintignore @@ -0,0 +1,6 @@ + +dist/* +__tests__/* +src/assets/* +release/* + diff --git a/.eslintrc.json b/.eslintrc.json new file mode 100644 index 0000000..3bc2ae5 --- /dev/null +++ b/.eslintrc.json @@ -0,0 +1,27 @@ +{ + "parserOptions": { + "ecmaVersion": 2018, + "sourceType": "module" + }, + "env": { + "es6": true, + "node": true + }, + "parser": "babel-eslint", + "plugins": ["react"], + "rules": { + "semi": [2, "always"], + "new-cap": [0], + "indent": [2, 4, { "SwitchCase": 1 }], + "comma-dangle": [2, "only-multiline"], + "space-before-function-paren": [2, "never"], + "operator-linebreak": [2, "before"], + "no-floating-decimal": [0], + "react/jsx-indent": [2, 4], + "react/jsx-indent-props": [2, 4], + "react/jsx-boolean-value": [2, "always"], + "react/prop-types": [0], + "jsx-quotes": [2, "prefer-double"] + }, + "extends": ["standard", "standard-react"] +} diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..d3c0a3f --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +*.js linguist-language=JavaScript +src/assets/* linguist-vendored diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4ba27dc --- /dev/null +++ b/.gitignore @@ -0,0 +1,48 @@ +# OSX +# +.DS_Store + +# Other +# +dist/ +release/ +package-lock.json + +# Xcode +# +build/ +*.pbxuser +!default.pbxuser +*.mode1v3 +!default.mode1v3 +*.mode2v3 +!default.mode2v3 +*.perspectivev3 +!default.perspectivev3 +xcuserdata +*.xccheckout +*.moved-aside +DerivedData +*.hmap +*.ipa +*.xcuserstate +project.xcworkspace + +# Android/IntelliJ +# +build/ +.idea +.gradle +local.properties +*.iml + +# node.js +# +node_modules/ +npm-debug.log + +# BUCK +buck-out/ +\.buckd/ +android/app/libs +*.keystore diff --git a/.stylelintignore b/.stylelintignore new file mode 100644 index 0000000..3eee469 --- /dev/null +++ b/.stylelintignore @@ -0,0 +1,4 @@ + +dist/* +__tests__/* +src/assets/* diff --git a/.stylelintrc b/.stylelintrc new file mode 100644 index 0000000..5947540 --- /dev/null +++ b/.stylelintrc @@ -0,0 +1,23 @@ +{ + "extends": "stylelint-config-standard", + "rules": { + "block-no-empty": null, + "font-family-no-missing-generic-family-keyword": null, + "no-descending-specificity": null, + "color-no-invalid-hex": true, + "declaration-colon-space-after": "always", + "indentation": [4, { + "except": ["value"] + }], + "max-empty-lines": 2, + "rule-empty-line-before": [ "always", { + "except": ["first-nested"], + "ignore": ["after-comment"] + } ], + "selector-pseudo-class-no-unknown": [ true, { + ignorePseudoClasses: ["global"], + } ], + "number-leading-zero": "never", + "unit-whitelist": ["em", "rem", "%", "s", "vh", "vw", "px", "deg"] + } +} diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..9ef0f57 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,6 @@ +language: node_js + +node_js: + - "6" + +script: npm run lint && npm run build diff --git a/CHANGELOG.MD b/CHANGELOG.MD new file mode 100644 index 0000000..a7fe933 --- /dev/null +++ b/CHANGELOG.MD @@ -0,0 +1,71 @@ + + +# 1.1.4 + +### 2017-09-22 + +#### Improvements +- 发送消息后滚动到对话窗口最下面 + +#### Bug fixed +- 修复 #34 快速`enter`时会重复发送消息 +- 修复点击状态栏小图标展开菜单后,收到消息后重新创建小图标导致程序退出的问题 + +# 1.1.3 + +### 2017-09-19 + +#### Bug fixed +- #36 #34 优化内存使用,修复由于1.1.1显示头像到菜单栏,接收新消息时刷新菜单中会话列表,重复创建nativeImage导致GC无法及时回收所造成内存占用过高 + + +# 1.1.2 + +### 2017-09-18 + +#### Improvements +- 增加自动更新 + + +# 1.1.1 + +### 2017-09-14 + +#### Improvements +- 增加用户头像到菜单栏 + +#### Bug fixed +- 修复登出时网络错误,导致未提示客户端已离线 + +### 2017-09-12 +#29 替换`html`为对应`emoji` + +### 2017-09-11 +#28 在 windows 和 linux 上不显示菜单 + +### 2017-09-10 + +#### Bug fixed +- 联系人列表只显示好友,不显示临时联系人 + +### 2017-09-08 + +#### Improvements +- 添加文件助手, #27 + +#### Bug fixed +- 修改样式,防止文字信息内容过长 + +### 2017-09-07 + +#### Improvements +- 调整表情框表情大小 +- 聊天窗口用户名取消换行 + +#### Feature +- 多文件拖拽发送 + +#### Bug fixed +- 仅在聊天开启时允许文件拖拽 +- 修复手机端消息同步客户端错误 +- 修复图片加载失败使用错误`src`进行回滚导致客户端卡死的问题 diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..af0409c --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2017 var.darling@gmail.com + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..7feb547 --- /dev/null +++ b/README.md @@ -0,0 +1,43 @@ +## 原版地址: https://github.com/trazyn/weweChat +## 本仓库fork仓库地址: https://github.com/kangxiaoju/weweChat + +> 站在巨人的肩膀上!!!!! + +在前人的基础上,通过比对[wechaty/puppet-wechat](https://github.com/wechaty/puppet-wechat)的代码,修复了UOS支持,具体见此[PR #206](https://github.com/wechaty/puppet-wechat/pull/206/files#diff-67aec1adcf4cadd88a9983a3111f5b54f2c98f8d8242a36814d36578b0b76ace) + +经测试 + ++ 消息接收发送正常 ++ 文件接收发送正常 ++ *其余功能均未测试······* + + +# 使用注意!!! 在扫码确认后请等待一段可能长可能短的时间 + +主要修改为以下部分 + +``` +diff --git a/src/js/stores/session.js b/src/js/stores/session.js +index f6423fa..d6e592f 100644 +--- a/src/js/stores/session.js ++++ b/src/js/stores/session.js +@@ -12,8 +12,8 @@ import contacts from './contacts'; + const CancelToken = axios.CancelToken; + const headers = { + 'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.71 Safari/537.36', +- 'client-version': '1.4.0', +- extspam: 'Gp8ICJkIEpkICggwMDAwMDAwMRAGGoAI1GiJSIpeO1RZTq9QBKsRbPJdi84ropi16EYI10WB6g74sGmRwSNXjPQnYUKYotKkvLGpshucCaeWZMOylnc6o2AgDX9grhQQx7fm2DJRTyuNhUlwmEoWhjoG3F0ySAWUsEbH3bJMsEBwoB//0qmFJob74ffdaslqL+IrSy7LJ76/G5TkvNC+J0VQkpH1u3iJJs0uUYyLDzdBIQ6Ogd8LDQ3VKnJLm4g/uDLe+G7zzzkOPzCjXL+70naaQ9medzqmh+/SmaQ6uFWLDQLcRln++wBwoEibNpG4uOJvqXy+ql50DjlNchSuqLmeadFoo9/mDT0q3G7o/80P15ostktjb7h9bfNc+nZVSnUEJXbCjTeqS5UYuxn+HTS5nZsPVxJA2O5GdKCYK4x8lTTKShRstqPfbQpplfllx2fwXcSljuYi3YipPyS3GCAqf5A7aYYwJ7AvGqUiR2SsVQ9Nbp8MGHET1GxhifC692APj6SJxZD3i1drSYZPMMsS9rKAJTGz2FEupohtpf2tgXm6c16nDk/cw+C7K7me5j5PLHv55DFCS84b06AytZPdkFZLj7FHOkcFGJXitHkX5cgww7vuf6F3p0yM/W73SoXTx6GX4G6Hg2rYx3O/9VU2Uq8lvURB4qIbD9XQpzmyiFMaytMnqxcZJcoXCtfkTJ6pI7a92JpRUvdSitg967VUDUAQnCXCM/m0snRkR9LtoXAO1FUGpwlp1EfIdCZFPKNnXMeqev0j9W9ZrkEs9ZWcUEexSj5z+dKYQBhIICviYUQHVqBTZSNy22PlUIeDeIs11j7q4t8rD8LPvzAKWVqXE+5lS1JPZkjg4y5hfX1Dod3t96clFfwsvDP6xBSe1NBcoKbkyGxYK0UvPGtKQEE0Se2zAymYDv41klYE9s+rxp8e94/H8XhrL9oGm8KWb2RmYnAE7ry9gd6e8ZuBRIsISlJAE/e8y8xFmP031S6Lnaet6YXPsFpuFsdQs535IjcFd75hh6DNMBYhSfjv456cvhsb99+fRw/KVZLC3yzNSCbLSyo9d9BI45Plma6V8akURQA/qsaAzU0VyTIqZJkPDTzhuCl92vD2AD/QOhx6iwRSVPAxcRFZcWjgc2wCKh+uCYkTVbNQpB9B90YlNmI3fWTuUOUjwOzQRxJZj11NsimjOJ50qQwTTFj6qQvQ1a/I+MkTx5UO+yNHl718JWcR3AXGmv/aa9rD1eNP8ioTGlOZwPgmr2sor2iBpKTOrB83QgZXP+xRYkb4zVC+LoAXEoIa1+zArywlgREer7DLePukkU6wHTkuSaF+ge5Of1bXuU4i938WJHj0t3D8uQxkJvoFi/EYN/7u2P1zGRLV4dHVUsZMGCCtnO6BBigFMAA=', ++ 'client-version': '2.0.0', ++ extspam: 'Go8FCIkFEokFCggwMDAwMDAwMRAGGvAESySibk50w5Wb3uTl2c2h64jVVrV7gNs06GFlWplHQbY/5FfiO++1yH4ykCyNPWKXmco+wfQzK5R98D3so7rJ5LmGFvBLjGceleySrc3SOf2Pc1gVehzJgODeS0lDL3/I/0S2SSE98YgKleq6Uqx6ndTy9yaL9qFxJL7eiA/R3SEfTaW1SBoSITIu+EEkXff+Pv8NHOk7N57rcGk1w0ZzRrQDkXTOXFN2iHYIzAAZPIOY45Lsh+A4slpgnDiaOvRtlQYCt97nmPLuTipOJ8Qc5pM7ZsOsAPPrCQL7nK0I7aPrFDF0q4ziUUKettzW8MrAaiVfmbD1/VkmLNVqqZVvBCtRblXb5FHmtS8FxnqCzYP4WFvz3T0TcrOqwLX1M/DQvcHaGGw0B0y4bZMs7lVScGBFxMj3vbFi2SRKbKhaitxHfYHAOAa0X7/MSS0RNAjdwoyGHeOepXOKY+h3iHeqCvgOH6LOifdHf/1aaZNwSkGotYnYScW8Yx63LnSwba7+hESrtPa/huRmB9KWvMCKbDThL/nne14hnL277EDCSocPu3rOSYjuB9gKSOdVmWsj9Dxb/iZIe+S6AiG29Esm+/eUacSba0k8wn5HhHg9d4tIcixrxveflc8vi2/wNQGVFNsGO6tB5WF0xf/plngOvQ1/ivGV/C1Qpdhzznh0ExAVJ6dwzNg7qIEBaw+BzTJTUuRcPk92Sn6QDn2Pu3mpONaEumacjW4w6ipPnPw+g2TfywJjeEcpSZaP4Q3YV5HG8D6UjWA4GSkBKculWpdCMadx0usMomsSS/74QgpYqcPkmamB4nVv1JxczYITIqItIKjD35IGKAUwAA==', + referer: 'https://wx.qq.com/?&lang=zh_CN&target=t', + }; + +``` + +## 鸣谢 + +[@trazyn](https://github.com/trazyn/weweChat) +[@kangxiaoju](https://github.com/kangxiaoju/weweChat) +[wechaty/puppet-wechat](https://github.com/wechaty/puppet-wechat) + +> 但不保证持续有效性,且用且珍惜 diff --git a/config/index.js b/config/index.js new file mode 100644 index 0000000..61d72f8 --- /dev/null +++ b/config/index.js @@ -0,0 +1,15 @@ + +import path from 'path'; + +const config = { + server: { + port: process.env.PORT || 3000, + host: 'localhost' + }, + + client: path.resolve(__dirname, '../src'), + assets: path.resolve(__dirname, '../src/assets'), + dist: path.resolve(__dirname, '../dist'), +}; + +export default config; diff --git a/config/webpack.config.base.js b/config/webpack.config.base.js new file mode 100644 index 0000000..0ac5a97 --- /dev/null +++ b/config/webpack.config.base.js @@ -0,0 +1,113 @@ + +import path from 'path'; +import config from './index'; + +export default { + + module: { + rules: [ + { + test: /\.jsx?$/, + loader: ['babel-loader', 'eslint-loader'], + exclude: /node_modules/, + }, + { + test: /\.css$/, + exclude: [/icomoon\/style.css$/, /icomoon\\style.css$/, /global.css$/], + use: [ + 'style-loader', + { + loader: 'css-loader', + options: { + // Note that we’ve set importLoaders: 1 on css-loader. + // We’re setting this because we want PostCSS to git @import statements first + modules: true, + importLoaders: 1, + localIdentName: '[path][name]__[local]--[hash:base64:5]' + }, + }, + { + loader: 'postcss-loader', + options: { + plugins: (loader) => [ + require('postcss-import')(), + require('postcss-cssnext')({ + browsers: [ + 'last 2 Chrome versions', + 'last 2 Edge versions', + 'last 2 Safari versions', + 'last 2 Firefox versions', + ], + }), + ] + } + } + ], + }, + { + test: /icomoon(\/|\\)style.css$/, + use: [ + 'style-loader', + 'css-loader', + ], + }, + { + test: /global.css$/, + use: [ + 'style-loader', + 'css-loader', + ], + }, + { + test: /\.html/, + loader: 'html-loader', + }, + { + test: /\.woff(\?.*)?$/, + loader: 'url-loader?prefix=fonts/&name=[path][name].[ext]&limit=40000&mimetype=application/font-woff', + }, + { + test: /\.woff2(\?.*)?$/, + loader: 'url-loader?prefix=fonts/&name=[path][name].[ext]&limit=40000&mimetype=application/font-woff2', + }, + { + test: /\.otf(\?.*)?$/, + loader: 'url-loader?prefix=fonts/&name=[path][name].[ext]&limit=40000&mimetype=font/opentype', + }, + { + test: /\.ttf(\?.*)?$/, + loader: 'url-loader?prefix=fonts/&name=[path][name].[ext]&limit=40000&mimetype=application/octet-stream', + }, + { + test: /\.svg(\?.*)?$/, + loader: 'url-loader?prefix=fonts/&name=[path][name].[ext]&limit=40000&mimetype=image/svg+xml', + }, + { + test: /\.eot(\?.*)?$/, + loader: 'url-loader?prefix=fonts/&name=[path][name].[ext]&limit=40000', + }, + { + test: /\.(png|jpg|jpeg|gif)$/, + loader: 'url-loader' + }, + ] + }, + + output: { + path: config.dist, + filename: 'bundle.js', + + // https://github.com/webpack/webpack/issues/1114 + libraryTarget: 'commonjs2' + }, + + resolve: { + extensions: ['.js', '.jsx', '.json'], + alias: { + components: path.join(config.client, 'js/components/'), + utils: path.join(config.client, 'js/utils/'), + images: path.join(config.client, 'assets/images/'), + fonts: path.join(config.client, 'assets/fonts/'), + }, + }, +}; diff --git a/config/webpack.config.dev.js b/config/webpack.config.dev.js new file mode 100644 index 0000000..f1969af --- /dev/null +++ b/config/webpack.config.dev.js @@ -0,0 +1,37 @@ + +import webpack from 'webpack'; +import config from './index'; +import baseConfig from './webpack.config.base'; + +const { host, port } = config.server; + +export default { + + ...baseConfig, + + mode: 'development', + devtool: 'cheap-module-eval-source-map', + + entry: [ + `webpack-hot-middleware/client?path=http://${host}:${port}/__webpack_hmr`, + 'babel-polyfill', + `${config.client}/app.js`, + ], + + output: { + ...baseConfig.output, + publicPath: `http://${host}:${port}/dist/`, + }, + + plugins: [ + // “If you are using the CLI, the webpack process will not exit with an error code by enabling this plugin.” + // https://github.com/webpack/docs/wiki/list-of-plugins#noerrorsplugin + new webpack.NoEmitOnErrorsPlugin(), + + // https://webpack.github.io/docs/hot-module-replacement-with-webpack.html + new webpack.HotModuleReplacementPlugin(), + ], + + // https://github.com/chentsulin/webpack-target-electron-renderer#how-this-module-works + target: 'electron-renderer' +}; diff --git a/config/webpack.config.electron.js b/config/webpack.config.electron.js new file mode 100644 index 0000000..c5fd01f --- /dev/null +++ b/config/webpack.config.electron.js @@ -0,0 +1,40 @@ + +import MinifyPlugin from 'babel-minify-webpack-plugin'; +import config from './index'; +import baseConfig from './webpack.config.base'; + +export default { + + ...baseConfig, + + mode: 'production', + devtool: false, + + entry: [ + 'babel-polyfill', + `./main.js`, + ], + + output: { + path: config.dist, + filename: 'main.js' + }, + + plugins: [ + // Minify the output + new MinifyPlugin(), + ], + + // https://github.com/chentsulin/webpack-target-electron-renderer#how-this-module-works + target: 'electron-main', + + /** + * Disables webpack processing of __dirname and __filename. + * If you run the bundle in node.js it falls back to these values of node.js. + * https://github.com/webpack/webpack/issues/2010 + */ + node: { + __dirname: false, + __filename: false + } +}; diff --git a/config/webpack.config.production.js b/config/webpack.config.production.js new file mode 100644 index 0000000..cc58003 --- /dev/null +++ b/config/webpack.config.production.js @@ -0,0 +1,64 @@ + +import path from 'path'; +import webpack from 'webpack'; +import MinifyPlugin from 'babel-minify-webpack-plugin'; +import config from './index'; +import HtmlWebpackPlugin from 'html-webpack-plugin'; +import CopyWebpackPlugin from 'copy-webpack-plugin'; +import baseConfig from './webpack.config.base'; + +export default { + + ...baseConfig, + + mode: 'production', + devtool: false, + + entry: [ + 'babel-polyfill', + `${config.client}/app.js`, + ], + + output: { + path: config.dist, + filename: 'app.[hash].js' + }, + + plugins: [ + // https://github.com/webpack/webpack/issues/2545 + // Use babel-minify-webpack-plugin minify code + new MinifyPlugin(), + + // https://webpack.github.io/docs/list-of-plugins.html#occurrenceorderplugin + // https://github.com/webpack/webpack/issues/864 + new webpack.optimize.OccurrenceOrderPlugin(), + + new CopyWebpackPlugin([ + { + from: `${config.assets}/fonts/**/*`, + to: `${config.dist}/src`, + }, + { + from: `${config.assets}/images/**/*`, + to: config.dist, + }, + { + from: path.resolve(__dirname, '../package.json'), + to: config.dist, + }, + ]), + + new HtmlWebpackPlugin({ + filename: `${config.dist}/src/index.html`, + template: './src/index.html', + inject: 'body', + hash: true, + minify: { + collapseWhitespace: true + } + }) + ], + + // https://github.com/chentsulin/webpack-target-electron-renderer#how-this-module-works + target: 'electron-renderer' +}; diff --git a/main.js b/main.js new file mode 100644 index 0000000..62ba394 --- /dev/null +++ b/main.js @@ -0,0 +1,771 @@ + +import fs from 'fs'; +import tmp from 'tmp'; +import { app, powerMonitor, BrowserWindow, Tray, Menu, ipcMain, clipboard, shell, nativeImage, dialog } from 'electron'; +import windowStateKeeper from 'electron-window-state'; +import AutoLaunch from 'auto-launch'; +import { autoUpdater } from 'electron-updater'; +import axios from 'axios'; + +import pkg from './package.json'; + +let forceQuit = false; +let downloading = false; +let mainWindow; +let tray; +let settings = {}; +let isFullScreen = false; +let isWin = process.platform === 'win32'; +let isOsx = process.platform === 'darwin'; +let isSuspend = false; +let userData = app.getPath('userData'); +let imagesCacheDir = `${userData}/images`; +let voicesCacheDir = `${userData}/voices`; +let mainMenu = [ + { + label: pkg.name, + submenu: [ + { + label: `About ${pkg.name}`, + selector: 'orderFrontStandardAboutPanel:', + }, + { + label: 'Preferences...', + accelerator: !isOsx ? 'Ctrl+,' : 'Cmd+,', + click() { + mainWindow.show(); + mainWindow.webContents.send('show-settings'); + } + }, + { + label: 'messageInput', + accelerator: 'Esc', + click() { + mainWindow.show(); + mainWindow.webContents.send('show-messageInput'); + } + }, + { + type: 'separator' + }, + { + role: 'hide' + }, + { + role: 'hideothers' + }, + { + role: 'unhide' + }, + { + label: 'Check for updates', + accelerator: !isOsx ? 'Ctrl+U' : 'Cmd+U', + click() { + checkForUpdates(); + } + }, + { + type: 'separator' + }, + { + label: 'Quit weweChat', + accelerator: !isOsx ? 'Alt+Q' : 'Command+Q', + selector: 'terminate:', + click() { + forceQuit = true; + mainWindow = null; + app.quit(); + } + } + ] + }, + { + label: 'File', + submenu: [ + { + label: 'New Chat', + accelerator: !isOsx ? 'Ctrl+N' : 'Cmd+N', + click() { + mainWindow.show(); + mainWindow.webContents.send('show-newchat'); + } + }, + { + label: 'Search...', + accelerator: !isOsx ? 'Ctrl+F' : 'Cmd+F', + click() { + mainWindow.show(); + mainWindow.webContents.send('show-search'); + } + }, + { + label: 'Batch Send Message', + accelerator: !isOsx ? 'Ctrl+B' : 'Cmd+B', + click() { + mainWindow.show(); + mainWindow.webContents.send('show-batchsend'); + } + }, + { + type: 'separator', + }, + { + label: 'Insert emoji', + accelerator: !isOsx ? 'Ctrl+I' : 'Cmd+I', + click() { + mainWindow.show(); + mainWindow.webContents.send('show-emoji'); + } + }, + { + type: 'separator', + }, + { + label: 'Next conversation', + accelerator: !isOsx ? 'Ctrl+J' : 'Cmd+J', + click() { + mainWindow.show(); + mainWindow.webContents.send('show-next'); + } + }, + { + label: 'Previous conversation', + accelerator: !isOsx ? 'Ctrl+K' : 'Cmd+K', + click() { + mainWindow.show(); + mainWindow.webContents.send('show-previous'); + } + }, + ] + }, + { + label: 'Conversations', + submenu: [ + { + label: 'Loading...', + } + ], + }, + { + label: 'Contacts', + submenu: [ + { + label: 'Loading...', + } + ], + }, + { + + }, + { + label: 'Edit', + submenu: [ + { + role: 'undo' + }, + { + role: 'redo' + }, + { + type: 'separator' + }, + { + role: 'cut' + }, + { + role: 'copy' + }, + { + role: 'paste' + }, + { + role: 'pasteandmatchstyle' + }, + { + role: 'delete' + }, + { + role: 'selectall' + } + ] + }, + { + label: 'View', + submenu: [ + { + label: isFullScreen ? 'Exit Full Screen' : 'Enter Full Screen', + accelerator: !isOsx ? 'Ctrl+Shift+F' : 'Shift+Cmd+F', + click() { + isFullScreen = !isFullScreen; + + mainWindow.show(); + mainWindow.setFullScreen(isFullScreen); + } + }, + { + label: 'Toggle Conversations', + accelerator: !isOsx ? 'Ctrl+Shift+M' : 'Shift+Cmd+M', + click() { + mainWindow.show(); + mainWindow.webContents.send('show-conversations'); + } + }, + { + type: 'separator', + }, + { + label: '' + }, + { + type: 'separator', + }, + { + role: 'toggledevtools' + }, + { + role: 'togglefullscreen' + } + ] + }, + { + role: 'window', + submenu: [ + { + role: 'minimize' + }, + { + role: 'close' + } + ] + }, + { + role: 'help', + submenu: [ + { + label: '反馈(不一定解决)', + click() { + shell.openExternal('https://github.com/Riceneeder/weweChat/issues'); + } + }, + { + label: 'Fork me on Github', + click() { + shell.openExternal('https://github.com/Riceneeder/weweChat'); + } + }, + ] + } +]; +let trayMenu = [ + { + label: `You have 0 messages`, + click() { + mainWindow.show(); + mainWindow.webContents.send('show-messages'); + } + }, + { + label: 'Toggle main window', + click() { + let isVisible = mainWindow.isVisible(); + isVisible ? mainWindow.hide() : mainWindow.show(); + } + }, + { + type: 'separator' + }, + { + label: 'Preferences...', + accelerator: !isOsx ? 'Ctrl+,' : 'Cmd+,', + click() { + mainWindow.show(); + mainWindow.webContents.send('show-settings'); + } + }, + { + label: 'Fork me on Github', + click() { + shell.openExternal('https://github.com/Riceneeder/weweChat'); + } + }, + { + type: 'separator' + }, + { + label: 'Toggle DevTools', + accelerator: !isOsx ? 'Ctrl+Alt+I' : 'Alt+Command+I', + click() { + mainWindow.show(); + mainWindow.toggleDevTools(); + } + }, + { + label: 'Hide menu bar icon', + click() { + mainWindow.webContents.send('hide-tray'); + } + }, + { + type: 'separator' + }, + { + label: 'Check for updates', + accelerator: !isOsx ? 'Ctrl+U' : 'Cmd+U', + click() { + checkForUpdates(); + } + }, + { + label: 'Quit weweChat', + accelerator: !isOsx ? 'Alt+Q' : 'Command+Q', + selector: 'terminate:', + click() { + forceQuit = true; + mainWindow = null; + app.quit(); + } + } +]; +let avatarPath = tmp.dirSync(); +let avatarCache = {}; +let avatarPlaceholder = `${__dirname}/src/assets/images/user-fallback.png`; +const icon = `${__dirname}/src/assets/images/dock.png`; + +async function getIcon(cookies, userid, src) { + var cached = avatarCache[userid]; + var icon; + + if (cached) { + return cached; + } + + if (cookies && src) { + try { + let response = await axios({ + url: src, + method: 'get', + responseType: 'arraybuffer', + headers: { + Cookie: cookies, + 'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.1.2 Safari/603.3.8', + }, + }); + // eslint-disable-next-line + let base64 = new Buffer(response.data, 'binary').toString('base64'); + + icon = `${avatarPath.name}/${userid}.jpg`; + fs.writeFileSync(icon, base64.replace(/^data:image\/png;base64,/, ''), 'base64'); + } catch (ex) { + console.error(ex); + icon = avatarPlaceholder; + } + } + + var image = nativeImage.createFromPath(icon); + + image = image.resize({ width: 24, height: 24 }); + + avatarCache[userid] = image; + + return image; +} + +function checkForUpdates() { + if (downloading) { + dialog.showMessageBox({ + type: 'info', + buttons: ['OK'], + title: pkg.name, + message: `Downloading...`, + detail: `Please leave the app open, the new version is downloading. You'll receive a new dialog when downloading is finished.` + }); + + return; + } + + autoUpdater.checkForUpdates(); +} + +function updateTray(unread = 0) { + if (!isOsx) { + // Always show the tray icon on windows + settings.showOnTray = true; + } + + // Update unread mesage count + trayMenu[0].label = `You have ${unread} messages`; + + if (settings.showOnTray) { + if (tray + && updateTray.lastUnread === unread) { + return; + } + + let contextmenu = Menu.buildFromTemplate(trayMenu); + let icon = unread + ? `${__dirname}/src/assets/images/icon-new-message.png` + : `${__dirname}/src/assets/images/icon.png` + ; + + // Make sure the last tray has been destroyed + setTimeout(() => { + if (!tray) { + // Init tray icon + tray = new Tray(icon); + + tray.on('right-click', () => { + tray.popUpContextMenu(); + }); + + let clicked = false; + tray.on('click', () => { + if (clicked) { + mainWindow.show(); + clicked = false; + } else { + clicked = true; + setTimeout(() => { + clicked = false; + }, 400); + } + }); + } + + tray.setImage(icon); + tray.setContextMenu(contextmenu); + }); + } else { + if (!tray) return; + + tray.destroy(); + tray = null; + } + + // Avoid tray icon been recreate + updateTray.lastUnread = unread; +} + +async function autostart() { + var launcher = new AutoLaunch({ + name: 'weweChat', + path: '/Applications/wewechat.app', + }); + + if (settings.startup) { + if (!isOsx) { + mainWindow.webContents.send('show-errors', { + message: 'Currently only supports the OSX.' + }); + return; + } + + launcher.enable() + .catch(ex => { + console.error(ex); + }); + } else { + launcher.disable(); + } +} + +function createMenu() { + var menu = Menu.buildFromTemplate(mainMenu); + + if (isOsx) { + Menu.setApplicationMenu(menu); + } else { + mainWindow.setMenu(menu); + } +} + +const createMainWindow = () => { + var mainWindowState = windowStateKeeper({ + defaultWidth: 745, + defaultHeight: 450, + }); + + mainWindow = new BrowserWindow({ + x: mainWindowState.x, + y: mainWindowState.y, + minWidth: 745, + minHeight: 450, + transparent: true, + titleBarStyle: 'hiddenInset', + backgroundColor: 'none', + resizable: true, + webPreferences: { + scrollBounce: true + }, + frame: !isWin, + icon + }); + + // mainWindow.webContents.openDevTools(); + mainWindow.setSize(350, 460); + mainWindow.loadURL( + `file://${__dirname}/src/index.html` + ); + mainWindow.webContents.on('did-finish-load', () => { + try { + mainWindow.show(); + mainWindow.focus(); + } catch (ex) { } + }); + + mainWindow.webContents.on('new-window', (event, url) => { + event.preventDefault(); + shell.openExternal(url); + }); + + mainWindow.on('close', e => { + if (forceQuit) { + mainWindow = null; + app.quit(); + } else { + e.preventDefault(); + mainWindow.hide(); + } + }); + + ipcMain.on('settings-apply', (event, args) => { + settings = args.settings; + mainWindow.setAlwaysOnTop(!!settings.alwaysOnTop); + + try { + updateTray(); + autostart(); + } catch (ex) { + console.error(ex); + } + }); + + ipcMain.on('show-window', event => { + if (!mainWindow.isVisible()) { + mainWindow.show(); + mainWindow.focus(); + } + }); + + ipcMain.on('menu-update', async(event, args) => { + var { cookies, contacts = [], conversations = [] } = args; + var conversationsMenu = mainMenu.find(e => e.label === 'Conversations'); + var contactsMenu = mainMenu.find(e => e.label === 'Contacts'); + var shouldUpdate = false; + + // if (!isOsx) { + // return; + // } + + if (conversations.length + && conversations.map(e => e.name).join() !== conversationsMenu.submenu.map(e => e.label).join()) { + shouldUpdate = true; + + conversations = await Promise.all( + conversations.map(async(e, index) => { + let icon = await getIcon(cookies, e.id, e.avatar); + + return { + label: e.name, + accelerator: !isOsx ? `Ctrl+${index}` : `Cmd+${index}`, + icon, + click() { + mainWindow.show(); + mainWindow.webContents.send('message-chatto', { + id: e.id, + }); + } + }; + }) + ); + conversationsMenu.submenu = conversations; + } + + if (contacts.length) { + shouldUpdate = true; + + contacts = await Promise.all( + contacts.map(async e => { + let icon = await getIcon(cookies, e.id, e.avatar); + + return { + label: e.name, + icon, + click() { + mainWindow.show(); + mainWindow.webContents.send('show-userinfo', { + id: e.id, + }); + } + }; + }) + ); + contactsMenu.submenu = contacts; + } + + if (shouldUpdate) { + createMenu(); + } + }); + + ipcMain.on('message-unread', (event, args) => { + var counter = args.counter; + + if (settings.showOnTray) { + updateTray(counter); + } + }); + + ipcMain.on('file-paste', (event) => { + var image = clipboard.readImage(); + var args = { hasImage: false }; + + if (!image.isEmpty()) { + let filename = tmp.tmpNameSync() + '.png'; + + args = { + hasImage: true, + filename, + raw: image.toPNG(), + }; + + fs.writeFileSync(filename, image.toPNG()); + } + + event.returnValue = args; + }); + + ipcMain.on('file-download', async(event, args) => { + var filename = args.filename; + + fs.writeFileSync(filename, args.raw.replace(/^data:image\/png;base64,/, ''), { + encoding: 'base64', + // Overwrite file + flag: 'wx', + }); + event.returnValue = filename; + }); + + ipcMain.on('open-file', async(event, filename) => { + shell.openItem(filename); + }); + + ipcMain.on('open-folder', async(event, dir) => { + shell.openItem(dir); + }); + + ipcMain.on('open-map', (event, args) => { + event.preventDefault(); + shell.openExternal(args.map); + }); + + ipcMain.on('open-image', async(event, args) => { + var filename = `${imagesCacheDir}/img_${args.dataset.id}`; + + fs.writeFileSync(filename, args.base64.replace(/^data:image\/png;base64,/, ''), 'base64'); + shell.openItem(filename); + }); + + ipcMain.on('is-suspend', (event, args) => { + event.returnValue = isSuspend; + }); + + ipcMain.once('logined', event => { + mainWindow.setResizable(true); + mainWindow.setSize(mainWindowState.width, mainWindowState.height); + mainWindowState.manage(mainWindow); + }); + + powerMonitor.on('resume', () => { + isSuspend = false; + mainWindow.webContents.send('os-resume'); + }); + + powerMonitor.on('suspend', () => { + isSuspend = true; + }); + + if (isOsx) { + app.setAboutPanelOptions({ + applicationName: pkg.name, + applicationVersion: pkg.version, + copyright: 'Made with 💖 by trazyn. \n https://github.com/trazyn/weweChat \nRevise By Riceneeder \n https://github.com/Riceneeder/weweChat', + credits: `With the invaluable help of: \n web.wechat.com`, + version: pkg.version + }); + } + + [imagesCacheDir, voicesCacheDir].map(e => { + if (!fs.existsSync(e)) { + fs.mkdirSync(e); + } + }); + + mainWindow.webContents.setUserAgent('Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.1.2 Safari/603.3.8'); + createMenu(); +}; + +app.setName(pkg.name); +app.dock && app.dock.setIcon(icon); + +app.on('ready', createMainWindow); +app.on('before-quit', () => { + // Fix issues #14 + forceQuit = true; +}); +app.on('activate', e => { + if (!mainWindow.isVisible()) { + mainWindow.show(); + } +}); + +autoUpdater.on('update-not-available', e => { + dialog.showMessageBox({ + type: 'info', + buttons: ['OK'], + title: pkg.name, + message: `${pkg.name} is up to date :)`, + detail: `${pkg.name} ${pkg.version} is currently the newest version available, It looks like you're already rocking the latest version!` + }); + + console.log('Update not available.'); +}); + +autoUpdater.on('update-available', e => { + downloading = true; + checkForUpdates(); +}); + +autoUpdater.on('error', err => { + dialog.showMessageBox({ + type: 'error', + buttons: ['Cancel update'], + title: pkg.name, + message: `Failed to update ${pkg.name} :(`, + detail: `An error occurred in retrieving update information, Please try again later.`, + }); + + downloading = false; + console.error(err); +}); + +autoUpdater.on('update-downloaded', info => { + var { releaseNotes, releaseName } = info; + var index = dialog.showMessageBox({ + type: 'info', + buttons: ['Restart', 'Later'], + title: pkg.name, + message: `The new version has been downloaded. Please restart the application to apply the updates.`, + detail: `${releaseName}\n\n${releaseNotes}` + }); + downloading = false; + + if (index === 1) { + return; + } + + autoUpdater.quitAndInstall(); + setTimeout(() => { + mainWindow = null; + app.quit(); + }); +}); diff --git a/package.json b/package.json new file mode 100644 index 0000000..3daae25 --- /dev/null +++ b/package.json @@ -0,0 +1,159 @@ +{ + "name": "wewechat", + "version": "1.2.0", + "description": "make weweChat great again!!!", + "main": "main.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1", + "js-lint": "node node_modules/.bin/eslint .", + "css-lint": "stylelint --fix src/**/*.css", + "lint": "yarn css-lint && yarn js-lint", + "build-main": "cross-env NODE_ENV=production node -r babel-register ./node_modules/webpack/bin/webpack --config ./config/webpack.config.electron.js --progress --profile --colors", + "build-renderer": "cross-env NODE_ENV=production node -r babel-register ./node_modules/webpack/bin/webpack --config ./config/webpack.config.production.js --progress --profile --colors", + "build": "rm -rf dist && yarn build-main && yarn build-renderer", + "package-win": "yarn build && rm -rf release && build --win --projectDir ./dist", + "package-win32": "yarn build && rm -rf release && build --win --ia32 --projectDir ./dist", + "package-linux": "yarn build && rm -rf release && build --linux --projectDir ./dist", + "package-mac": "yarn build && rm -rf release && build --mac --projectDir ./dist", + "package-all": "yarn build && rm -rf release && build --mac --win --linux --projectDir ./dist", + "hot-server": "cross-env NODE_ENV=development node -r babel-register scripts/dev.js", + "start-hot": "cross-env HOT=1 NODE_ENV=development ./node_modules/.bin/electron -r babel-register -r babel-polyfill ./main", + "dev": "concurrently --kill-others \"yarn hot-server\" \"yarn start-hot\"" + }, + "author": { + "email": "845541909@qq.com" + }, + "repository": { + "type": "git", + "url": "https://github.com/Riceneeder/weweChat" + }, + "license": "MIT", + "build": { + "productName": "wewechat", + "appId": "gh.riceneeder.wewechat", + "compression": "maximum", + "artifactName": "${productName}-${version}-${os}-${arch}.${ext}", + "dmg": { + "contents": [ + { + "x": 130, + "y": 220 + }, + { + "x": 410, + "y": 220, + "type": "link", + "path": "/Applications" + } + ], + "title": "wewechat ${version}" + }, + "mac": { + "icon": "../resource/dock.icns" + }, + "linux": { + "icon": "../resource", + "category": "Chat", + "executableName": "wewechat", + "target": [ + "deb", + "rpm", + "AppImage" + ] + }, + "win": { + "target": "nsis" + }, + "nsis": { + "oneClick": false, + "allowToChangeInstallationDirectory": true, + "artifactName": "${productName}-${version}-${os}-${arch}-setup.${ext}", + "deleteAppDataOnUninstall": true + }, + "directories": { + "output": "../release" + }, + "publish": [ + { + "provider": "github", + "owner": "riceneeder", + "repo": "weweChat" + } + ] + }, + "dependencies": { + "auto-launch": "^5.0.1", + "axios": "^0.18.0", + "browser-md5-file": "^1.0.0", + "classname": "^0.0.0", + "delegate": "^3.1.3", + "electron-context-menu": "^0.10.0", + "electron-json-storage": "^4.0.2", + "electron-window-state": "^4.1.1", + "han": "^0.0.7", + "mobx": "^5.0.3", + "mobx-react": "^5.2.3", + "moment": "^2.22.2", + "play-sound": "^1.1.1", + "prop-types": "^15.6.0", + "randomcolor": "^0.5.3", + "react": "^16.0.0", + "react-addons-css-transition-group": "^15.6.2", + "react-dom": "^16.0.0", + "react-router-dom": "^4.2.2", + "tmp": "0.0.33" + }, + "devDependencies": { + "babel-core": "^6.25.0", + "babel-eslint": "^8.0.1", + "babel-loader": "^7.1.1", + "babel-minify-webpack-plugin": "^0.3.1", + "babel-plugin-add-module-exports": "^0.2.1", + "babel-plugin-react-css-modules": "^3.3.2", + "babel-plugin-transform-async-to-generator": "^6.24.1", + "babel-plugin-transform-decorators-legacy": "^1.3.4", + "babel-polyfill": "^6.23.0", + "babel-preset-es2015": "^6.24.1", + "babel-preset-react": "^6.24.1", + "babel-preset-react-hmre": "^1.1.1", + "babel-preset-react-optimize": "^1.0.1", + "babel-preset-stage-0": "^6.24.1", + "babel-register": "^6.24.1", + "concurrently": "^3.5.0", + "copy-webpack-plugin": "^4.2.0", + "cross-env": "^5.1.1", + "css-loader": "^1.0.0", + "electron": "^2.0.16", + "electron-builder": "^19.56.2", + "electron-updater": "^3.0.1", + "eslint": "^5.1.0", + "eslint-config-standard": "^11.0.0", + "eslint-config-standard-react": "^6.0.0", + "eslint-formatter-pretty": "^1.1.0", + "eslint-loader": "^2.0.0", + "eslint-plugin-import": "^2.8.0", + "eslint-plugin-node": "^7.0.1", + "eslint-plugin-promise": "^3.6.0", + "eslint-plugin-react": "^7.4.0", + "eslint-plugin-standard": "^3.0.1", + "express": "^4.16.2", + "extract-text-webpack-plugin": "^3.0.2", + "file-loader": "^1.1.5", + "html-loader": "^0.5.1", + "html-webpack-plugin": "^3.2.0", + "json-loader": "^0.5.4", + "postcss-autoreset": "^2.0.0", + "postcss-cssnext": "^3.0.2", + "postcss-import": "^11.0.0", + "postcss-loader": "^2.0.8", + "postcss-modules": "^1.1.0", + "style-loader": "^0.21.0", + "stylelint": "^9.3.0", + "stylelint-config-standard": "^18.2.0", + "url-loader": "^1.0.1", + "webpack": "^4.16.1", + "webpack-cli": "^3.1.0", + "webpack-dev-middleware": "^3.1.3", + "webpack-hot-middleware": "^2.20.0" + } +} diff --git a/resource/128x128.png b/resource/128x128.png new file mode 100644 index 0000000..70c39f7 Binary files /dev/null and b/resource/128x128.png differ diff --git a/resource/16x16.png b/resource/16x16.png new file mode 100644 index 0000000..82d383e Binary files /dev/null and b/resource/16x16.png differ diff --git a/resource/24x24.png b/resource/24x24.png new file mode 100644 index 0000000..020eaf9 Binary files /dev/null and b/resource/24x24.png differ diff --git a/resource/256x256.png b/resource/256x256.png new file mode 100644 index 0000000..9c60b70 Binary files /dev/null and b/resource/256x256.png differ diff --git a/resource/32x32.png b/resource/32x32.png new file mode 100644 index 0000000..44d7f36 Binary files /dev/null and b/resource/32x32.png differ diff --git a/resource/48x48.png b/resource/48x48.png new file mode 100644 index 0000000..72fd45f Binary files /dev/null and b/resource/48x48.png differ diff --git a/resource/64x64.png b/resource/64x64.png new file mode 100644 index 0000000..194734a Binary files /dev/null and b/resource/64x64.png differ diff --git a/resource/96x96.png b/resource/96x96.png new file mode 100644 index 0000000..4c8ede4 Binary files /dev/null and b/resource/96x96.png differ diff --git a/resource/dock.icns b/resource/dock.icns new file mode 100644 index 0000000..cda1f85 Binary files /dev/null and b/resource/dock.icns differ diff --git a/resource/weweChat.sketch b/resource/weweChat.sketch new file mode 100644 index 0000000..b8fe306 Binary files /dev/null and b/resource/weweChat.sketch differ diff --git a/screenshots/0.png b/screenshots/0.png new file mode 100644 index 0000000..9193254 Binary files /dev/null and b/screenshots/0.png differ diff --git a/screenshots/1.png b/screenshots/1.png new file mode 100755 index 0000000..081fb84 Binary files /dev/null and b/screenshots/1.png differ diff --git a/screenshots/2.png b/screenshots/2.png new file mode 100755 index 0000000..1c7cdaf Binary files /dev/null and b/screenshots/2.png differ diff --git a/screenshots/3.png b/screenshots/3.png new file mode 100755 index 0000000..2548c7f Binary files /dev/null and b/screenshots/3.png differ diff --git a/screenshots/4.png b/screenshots/4.png new file mode 100755 index 0000000..61f5259 Binary files /dev/null and b/screenshots/4.png differ diff --git a/screenshots/5.png b/screenshots/5.png new file mode 100755 index 0000000..93a0a75 Binary files /dev/null and b/screenshots/5.png differ diff --git a/screenshots/batchsend.png b/screenshots/batchsend.png new file mode 100644 index 0000000..3c59b6f Binary files /dev/null and b/screenshots/batchsend.png differ diff --git a/screenshots/dragdrop.png b/screenshots/dragdrop.png new file mode 100644 index 0000000..0aa01ca Binary files /dev/null and b/screenshots/dragdrop.png differ diff --git a/screenshots/pasteconfirmation.png b/screenshots/pasteconfirmation.png new file mode 100644 index 0000000..4bc988b Binary files /dev/null and b/screenshots/pasteconfirmation.png differ diff --git a/screenshots/sendgif.gif b/screenshots/sendgif.gif new file mode 100644 index 0000000..d01f39d Binary files /dev/null and b/screenshots/sendgif.gif differ diff --git a/scripts/dev.js b/scripts/dev.js new file mode 100644 index 0000000..47c36a3 --- /dev/null +++ b/scripts/dev.js @@ -0,0 +1,35 @@ + +/** + * Setup and run the development server for Hot-Module-Replacement + * https://webpack.github.io/docs/hot-module-replacement-with-webpack.html + * @flow + */ +import express from 'express'; +import webpack from 'webpack'; +import webpackDevMiddleware from 'webpack-dev-middleware'; +import webpackHotMiddleware from 'webpack-hot-middleware'; + +import config from '../config'; +import webpackConfig from '../config/webpack.config.dev'; + +const app = new express(); +const compiler = webpack(webpackConfig); + +app.use( + webpackDevMiddleware(compiler, { + publicPath: webpackConfig.output.publicPath, + stats: { + colors: true + }, + }) +); +app.use(webpackHotMiddleware(compiler)); + +app.listen(config.server.port, config.server.host, err => { + if (err) { + console.error(err); + return; + } + + console.log(`Server is running with port ${config.server.port} 👏`); +}); diff --git a/scripts/publish.sh b/scripts/publish.sh new file mode 100644 index 0000000..3da5a7d --- /dev/null +++ b/scripts/publish.sh @@ -0,0 +1,10 @@ +#!/bin/sh + +if [ -z "$GH_TOKEN" ]; then + echo "You must set the GH_TOKEN environment variable." + echo "See README.md for more details." + exit 1 +fi + +# This will build, package and upload the app to GitHub. +npm run build && node_modules/.bin/build --projectDir ./dist --win --mac --linux -p always diff --git a/src/app.js b/src/app.js new file mode 100644 index 0000000..19e21c0 --- /dev/null +++ b/src/app.js @@ -0,0 +1,149 @@ + +import React, { Component } from 'react'; +import { render } from 'react-dom'; +import { Provider } from 'mobx-react'; +import { HashRouter } from 'react-router-dom'; +import { ipcRenderer } from 'electron'; + +import './global.css'; +import './assets/fonts/icomoon/style.css'; +import 'utils/albumcolors'; +import getRoutes from './js/routes'; +import stores from './js/stores'; + +class App extends Component { + async componentWillMount() { + if (window.navigator.onLine) { + await stores.session.hasLogin(); + await stores.settings.init(); + await stores.search.getHistory(); + } + } + + canisend() { + return this.refs.navigator.history.location.pathname === '/' + && stores.chat.user; + } + + componentDidMount() { + var navigator = this.refs.navigator; + + // Hide the tray icon + ipcRenderer.on('hide-tray', () => { + stores.settings.setShowOnTray(false); + }); + + // Chat with user + ipcRenderer.on('message-chatto', (event, args) => { + var user = stores.contacts.memberList.find(e => e.UserName === args.id); + + navigator.history.push('/'); + setTimeout(stores.chat.chatTo(user)); + }); + + // Show the user info + ipcRenderer.on('show-userinfo', (event, args) => { + var user = stores.contacts.memberList.find(e => e.UserName === args.id); + stores.userinfo.toggle(true, user); + }); + + // Shwo the settings page + ipcRenderer.on('show-settings', () => { + navigator.history.push('/settings'); + }); + + // Show a modal to create a new conversation + ipcRenderer.on('show-newchat', () => { + navigator.history.push('/'); + stores.newchat.toggle(true); + }); + + // Show the conversation pane + ipcRenderer.on('show-conversations', () => { + if (this.canisend()) { + stores.chat.toggleConversation(); + } + }); + + // Search in currently conversation list + ipcRenderer.on('show-search', () => { + navigator.history.push('/'); + stores.chat.toggleConversation(true); + + setTimeout(() => document.querySelector('#search').focus()); + }); + + // Show the home page + ipcRenderer.on('show-messages', () => { + navigator.history.push('/'); + stores.chat.toggleConversation(true); + }); + + // Batch send message + ipcRenderer.on('show-batchsend', () => { + stores.batchsend.toggle(true); + }); + + // Insert the qq emoji + ipcRenderer.on('show-emoji', () => { + if (this.canisend()) { + document.querySelector('#showEmoji').click(); + } + }); + + ipcRenderer.on('show-messageInput', () => { + if (this.canisend()) { + document.querySelector('#messageInput').focus(); + } + }); + + // Show contacts page + ipcRenderer.on('show-contacts', () => { + navigator.history.push('/contacts'); + }); + + // Go to next conversation + ipcRenderer.on('show-next', () => { + navigator.history.push('/'); + stores.chat.toggleConversation(true); + setTimeout(stores.chat.chatToNext); + }); + + // Go to the previous conversation + ipcRenderer.on('show-previous', () => { + navigator.history.push('/'); + stores.chat.toggleConversation(true); + setTimeout(stores.chat.chatToPrev); + }); + + // When the system resume reconnet to WeChat + ipcRenderer.on('os-resume', async() => { + var session = stores.session; + + console.log('os-resume' + new Date()); + setTimeout(() => { + session.checkTimeout(true); + }, 3000); + }); + + // Show the daemon error + ipcRenderer.on('show-errors', (event, args) => { + stores.snackbar.showMessage(args.message); + }); + } + + render() { + return ( + + + {getRoutes()} + + + ); + } +} + +render( + , + document.getElementById('root') +); diff --git a/src/assets/fonts/icomoon/Read Me.txt b/src/assets/fonts/icomoon/Read Me.txt new file mode 100755 index 0000000..8491652 --- /dev/null +++ b/src/assets/fonts/icomoon/Read Me.txt @@ -0,0 +1,7 @@ +Open *demo.html* to see a list of all the glyphs in your font along with their codes/ligatures. + +To use the generated font in desktop programs, you can install the TTF font. In order to copy the character associated with each icon, refer to the text box at the bottom right corner of each glyph in demo.html. The character inside this text box may be invisible; but it can still be copied. See this guide for more info: https://icomoon.io/#docs/local-fonts + +You won't need any of the files located under the *demo-files* directory when including the generated font in your own projects. + +You can import *selection.json* back to the IcoMoon app using the *Import Icons* button (or via Main Menu → Manage Projects) to retrieve your icon selection. diff --git a/src/assets/fonts/icomoon/demo-files/demo.css b/src/assets/fonts/icomoon/demo-files/demo.css new file mode 100755 index 0000000..22c3c24 --- /dev/null +++ b/src/assets/fonts/icomoon/demo-files/demo.css @@ -0,0 +1,190 @@ +body { + padding: 0; + margin: 0; + font-family: sans-serif; + font-size: 1em; + line-height: 1.5; + color: #555; + background: #fff; +} + +h1 { + font-size: 1.5em; + font-weight: normal; +} + +small { + font-size: .66666667em; +} + +a { + color: #e74c3c; + text-decoration: none; +} + +a:hover, a:focus { + box-shadow: 0 1px #e74c3c; +} + +.bshadow0, input { + box-shadow: inset 0 -2px #e7e7e7; +} + +input:hover { + box-shadow: inset 0 -2px #ccc; +} + +input, fieldset { + font-family: sans-serif; + font-size: 1em; + margin: 0; + padding: 0; + border: 0; +} + +input { + color: inherit; + line-height: 1.5; + height: 1.5em; + padding: .25em 0; +} + +input:focus { + outline: none; + box-shadow: inset 0 -2px #449fdb; +} + +.glyph { + font-size: 16px; + width: 15em; + padding-bottom: 1em; + margin-right: 4em; + margin-bottom: 1em; + float: left; + overflow: hidden; +} + +.liga { + width: 80%; + width: calc(100% - 2.5em); +} + +.talign-right { + text-align: right; +} + +.talign-center { + text-align: center; +} + +.bgc1 { + background: #f1f1f1; +} + +.fgc1 { + color: #999; +} + +.fgc0 { + color: #000; +} + +p { + margin-top: 1em; + margin-bottom: 1em; +} + +.mvm { + margin-top: .75em; + margin-bottom: .75em; +} + +.mtn { + margin-top: 0; +} + +.mtl, .mal { + margin-top: 1.5em; +} + +.mbl, .mal { + margin-bottom: 1.5em; +} + +.mal, .mhl { + margin-left: 1.5em; + margin-right: 1.5em; +} + +.mhmm { + margin-left: 1em; + margin-right: 1em; +} + +.mls { + margin-left: .25em; +} + +.ptl { + padding-top: 1.5em; +} + +.pbs, .pvs { + padding-bottom: .25em; +} + +.pvs, .pts { + padding-top: .25em; +} + +.unit { + float: left; +} + +.unitRight { + float: right; +} + +.size1of2 { + width: 50%; +} + +.size1of1 { + width: 100%; +} + +.clearfix:before, .clearfix:after { + content: " "; + display: table; +} + +.clearfix:after { + clear: both; +} + +.hidden-true { + display: none; +} + +.textbox0 { + width: 3em; + background: #f1f1f1; + padding: .25em .5em; + line-height: 1.5; + height: 1.5em; +} + +#testDrive { + display: block; + padding-top: 24px; + line-height: 1.5; +} + +.fs0 { + font-size: 16px; +} + +.fs1 { + font-size: 32px; +} + diff --git a/src/assets/fonts/icomoon/demo-files/demo.js b/src/assets/fonts/icomoon/demo-files/demo.js new file mode 100755 index 0000000..6f45f1c --- /dev/null +++ b/src/assets/fonts/icomoon/demo-files/demo.js @@ -0,0 +1,30 @@ +if (!('boxShadow' in document.body.style)) { + document.body.setAttribute('class', 'noBoxShadow'); +} + +document.body.addEventListener("click", function(e) { + var target = e.target; + if (target.tagName === "INPUT" && + target.getAttribute('class').indexOf('liga') === -1) { + target.select(); + } +}); + +(function() { + var fontSize = document.getElementById('fontSize'), + testDrive = document.getElementById('testDrive'), + testText = document.getElementById('testText'); + function updateTest() { + testDrive.innerHTML = testText.value || String.fromCharCode(160); + if (window.icomoonLiga) { + window.icomoonLiga(testDrive); + } + } + function updateSize() { + testDrive.style.fontSize = fontSize.value + 'px'; + } + fontSize.addEventListener('change', updateSize, false); + testText.addEventListener('input', updateTest, false); + testText.addEventListener('change', updateTest, false); + updateSize(); +}()); diff --git a/src/assets/fonts/icomoon/demo.html b/src/assets/fonts/icomoon/demo.html new file mode 100755 index 0000000..e401a90 --- /dev/null +++ b/src/assets/fonts/icomoon/demo.html @@ -0,0 +1,11766 @@ + + + + + IcoMoon Demo + + + + + +
+

Font Name: icomoon (Glyphs: 733)

+
+
+

Grid Size: Unknown

+
+
+ + + + icon-ion-alert-circled +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-alert +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-add-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-add +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-alarm-clock +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-alert +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-apps +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-archive +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-arrow-back +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-arrow-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-arrow-dropdown-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-arrow-dropdown +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-arrow-dropleft-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-arrow-dropleft +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-arrow-dropright-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-arrow-dropright +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-arrow-dropup-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-arrow-dropup +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-arrow-forward +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-arrow-up +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-attach +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-bar +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-bicycle +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-boat +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-bookmark +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-bulb +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-bus +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-calendar +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-call +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-camera +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-cancel +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-car +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-cart +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-chat +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-checkbox-blank +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-checkbox-outline-blank +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-checkbox-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-checkbox +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-checkmark-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-clipboard +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-close +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-cloud-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-cloud-done +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-cloud-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-cloud +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-color-palette +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-compass +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-contact +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-contacts +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-contract +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-create +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-delete +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-desktop +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-document +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-done-all +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-done +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-download +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-drafts +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-exit +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-expand +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-favorite-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-favorite +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-film +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-folder-open +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-folder +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-funnel +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-globe +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-hand +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-hangout +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-happy +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-home +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-image +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-laptop +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-list +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-locate +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-lock +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-mail +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-map +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-menu +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-microphone-off +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-microphone +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-more-horizontal +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-more-vertical +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-navigate +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-notifications-none +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-notifications-off +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-notifications +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-open +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-options +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-people +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-person-add +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-person +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-phone-landscape +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-phone-portrait +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-pin +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-plane +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-playstore +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-print +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-radio-button-off +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-radio-button-on +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-refresh +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-remove-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-remove +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-restaurant +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-sad +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-search +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-send +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-settings +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-share-alt +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-share +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-star-half +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-star-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-star +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-stopwatch +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-subway +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-sunny +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-sync +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-textsms +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-time +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-train +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-unlock +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-upload +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-volume-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-volume-mute +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-volume-off +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-volume-up +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-walk +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-warning +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-watch +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-android-wifi +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-aperture +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-archive +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-arrow-down-a +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-arrow-down-b +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-arrow-down-c +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-arrow-expand +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-arrow-graph-down-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-arrow-graph-down-right +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-arrow-graph-up-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-arrow-graph-up-right +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-arrow-left-a +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-arrow-left-b +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-arrow-left-c +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-arrow-move +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-arrow-resize +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-arrow-return-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-arrow-return-right +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-arrow-right-a +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-arrow-right-b +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-arrow-right-c +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-arrow-shrink +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-arrow-swap +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-arrow-up-a +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-arrow-up-b +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-arrow-up-c +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-asterisk +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-at +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-backspace-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-backspace +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-bag +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-battery-charging +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-battery-empty +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-battery-full +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-battery-half +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-battery-low +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-beaker +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-beer +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-bluetooth +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-bonfire +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-bookmark +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-bowtie +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-briefcase +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-bug +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-calculator +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-calendar +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-camera +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-card +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-cash +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-chatbox-working +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-chatbox +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-chatboxes +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-chatbubble-working +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-chatbubble +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-chatbubbles +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-checkmark-circled +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-checkmark-round +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-checkmark +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-chevron-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-chevron-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-chevron-right +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-chevron-up +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-clipboard +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-clock +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-close-circled +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-close-round +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-close +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-closed-captioning +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-cloud +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-code-download +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-code-working +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-code +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-coffee +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-compass +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-compose +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-connection-bars +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-contrast +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-crop +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-cube +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-disc +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-document-text +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-document +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-drag +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-earth +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-easel +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-edit +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-egg +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-eject +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-email-unread +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-email +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-erlenmeyer-flask-bubbles +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-erlenmeyer-flask +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-eye-disabled +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-eye +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-female +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-filing +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-film-marker +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-fireball +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-flag +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-flame +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-flash-off +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-flash +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-folder +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-fork-repo +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-fork +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-forward +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-funnel +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-gear-a +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-gear-b +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-grid +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-hammer +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-happy-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-happy +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-headphone +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-heart-broken +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-heart +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-help-buoy +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-help-circled +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-help +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-home +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-icecream +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-image +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-images +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-information-circled +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-information +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ionic +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-alarm-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-alarm +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-albums-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-albums +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-americanfootball-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-americanfootball +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-analytics-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-analytics +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-arrow-back +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-arrow-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-arrow-forward +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-arrow-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-arrow-right +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-arrow-thin-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-arrow-thin-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-arrow-thin-right +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-arrow-thin-up +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-arrow-up +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-at-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-at +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-barcode-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-barcode +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-baseball-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-baseball +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-basketball-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-basketball +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-bell-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-bell +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-body-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-body +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-bolt-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-bolt +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-book-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-book +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-bookmarks-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-bookmarks +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-box-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-box +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-briefcase-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-briefcase +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-browsers-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-browsers +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-calculator-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-calculator +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-calendar-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-calendar +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-camera-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-camera +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-cart-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-cart +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-chatboxes-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-chatboxes +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-chatbubble-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-chatbubble +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-checkmark-empty +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-checkmark-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-checkmark +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-circle-filled +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-circle-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-clock-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-clock +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-close-empty +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-close-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-close +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-cloud-download-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-cloud-download +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-cloud-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-cloud-upload-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-cloud-upload +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-cloud +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-cloudy-night-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-cloudy-night +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-cloudy-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-cloudy +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-cog-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-cog +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-color-filter-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-color-filter +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-color-wand-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-color-wand +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-compose-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-compose +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-contact-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-contact +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-copy-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-copy +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-crop-strong +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-crop +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-download-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-download +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-drag +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-email-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-email +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-eye-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-eye +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-fastforward-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-fastforward +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-filing-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-filing +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-film-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-film +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-flag-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-flag +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-flame-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-flame +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-flask-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-flask +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-flower-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-flower +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-folder-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-folder +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-football-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-football +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-game-controller-a-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-game-controller-a +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-game-controller-b-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-game-controller-b +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-gear-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-gear +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-glasses-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-glasses +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-grid-view-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-grid-view +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-heart-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-heart +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-help-empty +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-help-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-help +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-home-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-home +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-infinite-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-infinite +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-information-empty +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-information-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-information +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-ionic-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-keypad-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-keypad +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-lightbulb-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-lightbulb +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-list-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-list +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-location-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-location +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-locked-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-locked +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-loop-strong +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-loop +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-medical-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-medical +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-medkit-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-medkit +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-mic-off +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-mic-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-mic +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-minus-empty +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-minus-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-minus +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-monitor-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-monitor +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-moon-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-moon +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-more-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-more +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-musical-note +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-musical-notes +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-navigate-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-navigate +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-nutrition-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-nutrition +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-paper-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-paper +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-paperplane-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-paperplane +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-partlysunny-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-partlysunny +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-pause-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-pause +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-paw-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-paw +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-people-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-people +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-person-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-person +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-personadd-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-personadd +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-photos-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-photos +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-pie-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-pie +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-pint-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-pint +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-play-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-play +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-plus-empty +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-plus-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-plus +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-pricetag-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-pricetag +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-pricetags-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-pricetags +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-printer-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-printer +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-pulse-strong +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-pulse +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-rainy-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-rainy +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-recording-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-recording +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-redo-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-redo +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-refresh-empty +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-refresh-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-refresh +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-reload +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-reverse-camera-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-reverse-camera +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-rewind-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-rewind +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-rose-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-rose +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-search-strong +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-search +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-settings-strong +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-settings +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-shuffle-strong +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-shuffle +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-skipbackward-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-skipbackward +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-skipforward-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-skipforward +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-snowy +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-speedometer-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-speedometer +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-star-half +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-star-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-star +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-stopwatch-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-stopwatch +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-sunny-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-sunny +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-telephone-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-telephone +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-tennisball-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-tennisball +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-thunderstorm-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-thunderstorm +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-time-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-time +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-timer-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-timer +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-toggle-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-toggle +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-trash-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-trash +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-undo-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-undo +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-unlocked-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-unlocked +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-upload-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-upload +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-videocam-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-videocam +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-volume-high +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-volume-low +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-wineglass-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-wineglass +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-world-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ios-world +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ipad +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-iphone +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ipod +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-jet +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-key +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-knife +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-laptop +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-leaf +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-levels +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-lightbulb +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-link +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-load-a +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-load-b +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-load-c +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-load-d +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-location +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-lock-combination +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-locked +
+
+ + +
+
+ liga: + +
+
+
+
+ + icon-ion-log-in +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-log-out +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-loop +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-magnet +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-male +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-man +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-map +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-medkit +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-merge +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-mic-a +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-mic-b +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-mic-c +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-minus-circled +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-minus-round +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-minus +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-model-s +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-monitor +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-more +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-mouse +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-music-note +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-navicon-round +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-navicon +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-navigate +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-network +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-no-smoking +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-nuclear +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-outlet +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-paintbrush +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-paintbucket +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-paper-airplane +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-paperclip +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-pause +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-person-add +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-person-stalker +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-person +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-pie-graph +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-pin +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-pinpoint +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-pizza +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-plane +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-planet +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-play +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-playstation +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-plus-circled +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-plus-round +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-plus +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-podium +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-pound +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-power +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-pricetag +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-pricetags +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-printer +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-pull-request +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-qr-scanner +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-quote +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-radio-waves +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-record +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-refresh +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-reply-all +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-reply +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ribbon-a +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-ribbon-b +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-sad-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-sad +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-scissors +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-search +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-settings +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-share +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-shuffle +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-skip-backward +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-skip-forward +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-android-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-android +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-angular-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-angular +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-apple-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-apple +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-bitcoin-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-bitcoin +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-buffer-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-buffer +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-chrome-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-chrome +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-codepen-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-codepen +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-css3-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-css3 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-designernews-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-designernews +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-dribbble-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-dribbble +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-dropbox-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-dropbox +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-euro-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-euro +
+
+ + +
+
+ liga: + +
+
+
+
+ + icon-ion-social-facebook-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + icon-ion-social-facebook +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-foursquare-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-foursquare +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-freebsd-devil +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-github-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-github +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-google-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-google +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-googleplus-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-googleplus +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-hackernews-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-hackernews +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-html5-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-html5 +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-instagram-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-instagram +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-javascript-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-javascript +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-linkedin-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-linkedin +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-markdown +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-nodejs +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-octocat +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-pinterest-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-pinterest +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-python +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-reddit-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-reddit +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-rss-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-rss +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-sass +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-skype-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-skype +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-snapchat-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-snapchat +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-tumblr-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-tumblr +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-tux +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-twitch-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-twitch +
+
+ + +
+
+ liga: + +
+
+
+
+ + icon-ion-social-twitter-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + icon-ion-social-twitter +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-usd-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-usd +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-vimeo-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-vimeo +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-whatsapp-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-whatsapp +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-windows-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-windows +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-wordpress-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-wordpress +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-yahoo-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-yahoo +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-yen-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-yen +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-youtube-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-social-youtube +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-soup-can-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-soup-can +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-speakerphone +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-speedometer +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-spoon +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-star +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-stats-bars +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-steam +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-stop +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-thermometer +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-thumbsdown +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-thumbsup +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-toggle-filled +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-toggle +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-transgender +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-trash-a +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-trash-b +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-trophy +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-tshirt-outline +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-tshirt +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-umbrella +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-university +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-unlocked +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-upload +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-usb +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-videocamera +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-volume-high +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-volume-low +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-volume-medium +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-volume-mute +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-wand +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-waterdrop +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-wifi +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-wineglass +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-woman +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-wrench +
+
+ + +
+
+ liga: + +
+
+
+
+ + + + icon-ion-xbox +
+
+ + +
+
+ liga: + +
+
+
+ + +
+

Font Test Drive

+ + +
  +
+
+ +
+

Generated by IcoMoon

+
+ + + + diff --git a/src/assets/fonts/icomoon/fonts/icomoon.eot b/src/assets/fonts/icomoon/fonts/icomoon.eot new file mode 100755 index 0000000..7637fae Binary files /dev/null and b/src/assets/fonts/icomoon/fonts/icomoon.eot differ diff --git a/src/assets/fonts/icomoon/fonts/icomoon.svg b/src/assets/fonts/icomoon/fonts/icomoon.svg new file mode 100755 index 0000000..136793f --- /dev/null +++ b/src/assets/fonts/icomoon/fonts/icomoon.svg @@ -0,0 +1,743 @@ + + + +Generated by IcoMoon + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/assets/fonts/icomoon/fonts/icomoon.ttf b/src/assets/fonts/icomoon/fonts/icomoon.ttf new file mode 100755 index 0000000..785e73f Binary files /dev/null and b/src/assets/fonts/icomoon/fonts/icomoon.ttf differ diff --git a/src/assets/fonts/icomoon/fonts/icomoon.woff b/src/assets/fonts/icomoon/fonts/icomoon.woff new file mode 100755 index 0000000..6f74e0f Binary files /dev/null and b/src/assets/fonts/icomoon/fonts/icomoon.woff differ diff --git a/src/assets/fonts/icomoon/selection.json b/src/assets/fonts/icomoon/selection.json new file mode 100755 index 0000000..c129c2b --- /dev/null +++ b/src/assets/fonts/icomoon/selection.json @@ -0,0 +1,18888 @@ +{ + "IcoMoonType": "selection", + "icons": [ + { + "icon": { + "paths": [ + "M890 844c6 10 10 26 4 36s-16 16-28 16h-836c-12 0-22-6-28-16s-2-26 4-36l414-698c6-10 16-18 28-18s22 8 28 18zM512 800v-96h-128v96h128zM512 640v-288h-128v288h128z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-alert-circled" + ], + "defaultCode": 61696, + "grid": 0 + }, + "properties": { + "id": 1, + "order": 2, + "ligatures": "", + "prevSize": 32, + "code": 61696, + "name": "ion-alert-circled" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 0 + }, + { + "icon": { + "paths": [ + "M256 960h-256v-192h256v192zM224 640h-192l-32-576h256z" + ], + "width": 256, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-alert" + ], + "defaultCode": 61697, + "grid": 0 + }, + "properties": { + "id": 2, + "order": 3, + "ligatures": "", + "prevSize": 32, + "code": 61697, + "name": "ion-alert" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 1 + }, + { + "icon": { + "paths": [ + "M416 96c230 0 416 186 416 416s-186 416-416 416-416-186-416-416 186-416 416-416zM630 554v-84h-172v-172h-84v172h-172v84h172v172h84v-172h172z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-add-circle" + ], + "defaultCode": 62297, + "grid": 0 + }, + "properties": { + "id": 3, + "order": 4, + "ligatures": "", + "prevSize": 32, + "code": 62297, + "name": "ion-android-add-circle" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 2 + }, + { + "icon": { + "paths": [ + "M640 554h-278v278h-84v-278h-278v-84h278v-278h84v278h278v84z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-add" + ], + "defaultCode": 62151, + "grid": 0 + }, + "properties": { + "id": 4, + "order": 5, + "ligatures": "", + "prevSize": 32, + "code": 62151, + "name": "ion-android-add" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 3 + }, + { + "icon": { + "paths": [ + "M856 250l-56 66-196-164 56-66zM250 150l-194 166-56-66 194-166zM450 346v0 222l170 100-32 54-202-122v-254h64zM428 176c212 0 386 172 386 382s-174 382-386 382c-214 0-386-172-386-382s172-382 386-382zM428 856c164 0 300-132 300-298 0-164-136-298-300-298s-300 134-300 298 136 298 300 298z" + ], + "width": 856, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-alarm-clock" + ], + "defaultCode": 62298, + "grid": 0 + }, + "properties": { + "id": 5, + "order": 6, + "ligatures": "", + "prevSize": 32, + "code": 62298, + "name": "ion-android-alarm-clock" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 4 + }, + { + "icon": { + "paths": [ + "M416 96c228 0 416 188 416 416s-188 416-416 416-416-188-416-416 188-416 416-416zM464 720v-80h-96v80h96zM464 544v-256h-96v256h96z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-alert" + ], + "defaultCode": 62299, + "grid": 0 + }, + "properties": { + "id": 6, + "order": 7, + "ligatures": "", + "prevSize": 32, + "code": 62299, + "name": "ion-android-alert" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 5 + }, + { + "icon": { + "paths": [ + "M0 352v-160h160v160h-160zM240 832v-160h160v160h-160zM0 832v-160h160v160h-160zM0 592v-160h160v160h-160zM240 592v-160h160v160h-160zM480 192h160v160h-160v-160zM240 352v-160h160v160h-160zM480 592v-160h160v160h-160zM480 832v-160h160v160h-160z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-apps" + ], + "defaultCode": 62300, + "grid": 0 + }, + "properties": { + "id": 7, + "order": 8, + "ligatures": "", + "prevSize": 32, + "code": 62300, + "name": "ion-android-apps" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 6 + }, + { + "icon": { + "paths": [ + "M812 200c14 14 20 34 20 58v578c0 50-42 92-92 92h-648c-50 0-92-42-92-92v-578c0-24 6-44 20-58l66-78c12-16 32-26 52-26h556c20 0 40 10 52 26zM416 766l254-254h-162v-92h-184v92h-162zM98 188h634l-44-46h-554z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-archive" + ], + "defaultCode": 62153, + "grid": 0 + }, + "properties": { + "id": 8, + "order": 9, + "ligatures": "", + "prevSize": 32, + "code": 62153, + "name": "ion-android-archive" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 7 + }, + { + "icon": { + "paths": [ + "M684 470v84h-520l238 240-60 60-342-342 342-342 62 60-240 240h520z" + ], + "width": 684, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-arrow-back" + ], + "defaultCode": 62154, + "grid": 0 + }, + "properties": { + "id": 9, + "order": 10, + "ligatures": "", + "prevSize": 32, + "code": 62154, + "name": "ion-android-arrow-back" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 8 + }, + { + "icon": { + "paths": [ + "M384 170v520l240-240 60 62-342 342-342-342 60-60 240 238v-520h84z" + ], + "width": 684, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-arrow-down" + ], + "defaultCode": 62301, + "grid": 0 + }, + "properties": { + "id": 10, + "order": 11, + "ligatures": "", + "prevSize": 32, + "code": 62301, + "name": "ion-android-arrow-down" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 9 + }, + { + "icon": { + "paths": [ + "M416 96c230 0 416 186 416 416s-186 416-416 416-416-186-416-416 186-416 416-416zM416 640l192-192h-384z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-arrow-dropdown-circle" + ], + "defaultCode": 62302, + "grid": 0 + }, + "properties": { + "id": 11, + "order": 12, + "ligatures": "", + "prevSize": 32, + "code": 62302, + "name": "ion-android-arrow-dropdown-circle" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 10 + }, + { + "icon": { + "paths": [ + "M0 384h512l-256 256z" + ], + "width": 512, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-arrow-dropdown" + ], + "defaultCode": 62303, + "grid": 0 + }, + "properties": { + "id": 12, + "order": 13, + "ligatures": "", + "prevSize": 32, + "code": 62303, + "name": "ion-android-arrow-dropdown" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 11 + }, + { + "icon": { + "paths": [ + "M832 512c0 230-186 416-416 416s-416-186-416-416 186-416 416-416 416 186 416 416zM288 512l192 192v-384z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-arrow-dropleft-circle" + ], + "defaultCode": 62304, + "grid": 0 + }, + "properties": { + "id": 13, + "order": 14, + "ligatures": "", + "prevSize": 32, + "code": 62304, + "name": "ion-android-arrow-dropleft-circle" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 12 + }, + { + "icon": { + "paths": [ + "M256 256v512l-256-256z" + ], + "width": 256, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-arrow-dropleft" + ], + "defaultCode": 62305, + "grid": 0 + }, + "properties": { + "id": 14, + "order": 15, + "ligatures": "", + "prevSize": 32, + "code": 62305, + "name": "ion-android-arrow-dropleft" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 13 + }, + { + "icon": { + "paths": [ + "M416 928c-230 0-416-186-416-416s186-416 416-416 416 186 416 416-186 416-416 416zM352 704l192-192-192-192v384z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-arrow-dropright-circle" + ], + "defaultCode": 62306, + "grid": 0 + }, + "properties": { + "id": 15, + "order": 16, + "ligatures": "", + "prevSize": 32, + "code": 62306, + "name": "ion-android-arrow-dropright-circle" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 14 + }, + { + "icon": { + "paths": [ + "M0 256l256 256-256 256v-512z" + ], + "width": 256, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-arrow-dropright" + ], + "defaultCode": 62307, + "grid": 0 + }, + "properties": { + "id": 16, + "order": 17, + "ligatures": "", + "prevSize": 32, + "code": 62307, + "name": "ion-android-arrow-dropright" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 15 + }, + { + "icon": { + "paths": [ + "M832 512c0 230-186 416-416 416s-416-186-416-416 186-416 416-416 416 186 416 416zM608 576l-192-192-192 192h384z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-arrow-dropup-circle" + ], + "defaultCode": 62308, + "grid": 0 + }, + "properties": { + "id": 17, + "order": 18, + "ligatures": "", + "prevSize": 32, + "code": 62308, + "name": "ion-android-arrow-dropup-circle" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 16 + }, + { + "icon": { + "paths": [ + "M0 640l256-256 256 256h-512z" + ], + "width": 512, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-arrow-dropup" + ], + "defaultCode": 62309, + "grid": 0 + }, + "properties": { + "id": 18, + "order": 19, + "ligatures": "", + "prevSize": 32, + "code": 62309, + "name": "ion-android-arrow-dropup" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 17 + }, + { + "icon": { + "paths": [ + "M0 554v-84h520l-238-240 60-60 342 342-342 342-62-60 240-240h-520z" + ], + "width": 684, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-arrow-forward" + ], + "defaultCode": 62223, + "grid": 0 + }, + "properties": { + "id": 19, + "order": 20, + "ligatures": "", + "prevSize": 32, + "code": 62223, + "name": "ion-android-arrow-forward" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 18 + }, + { + "icon": { + "paths": [ + "M384 854h-84v-520l-240 238-60-60 342-342 342 342-60 62-240-240v520z" + ], + "width": 684, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-arrow-up" + ], + "defaultCode": 62310, + "grid": 0 + }, + "properties": { + "id": 20, + "order": 21, + "ligatures": "", + "prevSize": 32, + "code": 62310, + "name": "ion-android-arrow-up" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 19 + }, + { + "icon": { + "paths": [ + "M406 256h64v470c0 130-106 234-236 234s-234-104-234-234v-492c0-94 76-170 170-170s172 76 172 170v492c0 60-48 106-108 106s-106-46-106-106v-406h64v406c0 24 18 42 42 42s44-18 44-42v-492c0-60-48-106-108-106s-106 46-106 106v492c0 94 76 170 170 170s172-76 172-170v-470z" + ], + "width": 470, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-attach" + ], + "defaultCode": 62311, + "grid": 0 + }, + "properties": { + "id": 21, + "order": 22, + "ligatures": "", + "prevSize": 32, + "code": 62311, + "name": "ion-android-attach" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 20 + }, + { + "icon": { + "paths": [ + "M342 554l-342-340v-86h768v86l-342 340v262h214v80h-512v-80h214v-262zM192 298h384l86-84h-556z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-bar" + ], + "defaultCode": 62312, + "grid": 0 + }, + "properties": { + "id": 22, + "order": 23, + "ligatures": "", + "prevSize": 32, + "code": 62312, + "name": "ion-android-bar" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 21 + }, + { + "icon": { + "paths": [ + "M598 262c-38 0-68-28-68-66s30-68 68-68 66 30 66 68-28 66-66 66zM710 522c102 0 186 86 186 188s-84 186-186 186-188-84-188-186 86-188 188-188zM710 840c72 0 130-58 130-130s-58-132-130-132-132 60-132 132 60 130 132 130zM548 448l-60-90-86 90 78 64v224h-64v-172l-122-76c-18-12-38-30-38-54 0-16 6-34 18-46l144-138c12-12 28-18 44-18 22 0 44 14 56 32l68 120h118v64h-156zM186 522c102 0 188 86 188 188s-86 186-188 186-186-84-186-186 84-188 186-188zM186 840c72 0 132-58 132-130s-60-132-132-132-130 60-130 132 58 130 130 130z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-bicycle" + ], + "defaultCode": 62313, + "grid": 0 + }, + "properties": { + "id": 23, + "order": 24, + "ligatures": "", + "prevSize": 32, + "code": 62313, + "name": "ion-android-bicycle" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 22 + }, + { + "icon": { + "paths": [ + "M104 826l-102-278c-4-12-2-24 2-34s16-16 26-20l76-26v-196c0-46 40-86 86-86h128l32-106h192l32 106h128c46 0 86 40 86 86v196l76 26c10 4 22 10 26 20s6 24 2 34l-102 278h-2c-68 0-130-40-172-86-42 46-102 86-170 86s-128-38-170-84c-42 46-104 84-172 84h-2zM192 272v168l256-82 256 82v-168h-512zM618 816c0 0 118 128 214 128h-42c-60 0-118-24-172-52-106 56-234 56-340 0-54 28-112 52-172 52h-42c98 0 214-128 214-128 104 72 236 72 340 0z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-boat" + ], + "defaultCode": 62314, + "grid": 0 + }, + "properties": { + "id": 24, + "order": 25, + "ligatures": "", + "prevSize": 32, + "code": 62314, + "name": "ion-android-boat" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 23 + }, + { + "icon": { + "paths": [ + "M496 128c44 0 80 36 80 80v688l-288-128-288 128v-688c0-44 36-80 80-80h416z" + ], + "width": 576, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-bookmark" + ], + "defaultCode": 62315, + "grid": 0 + }, + "properties": { + "id": 25, + "order": 26, + "ligatures": "", + "prevSize": 32, + "code": 62315, + "name": "ion-android-bookmark" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 24 + }, + { + "icon": { + "paths": [ + "M448 340c-50 0-100 20-136 56s-56 86-56 136c0 68 36 132 96 166l32 20v178h128v-178l32-20c30-16 54-40 70-68 18-30 26-62 26-98 0-50-20-100-56-136s-86-56-136-56zM490 64v0 128h-84v-128h84zM748 172v0l60 60-76 76-60-60zM148 172v0l76 76-60 60-76-76zM448 276v0c140 0 256 116 256 256 0 96-52 178-128 222v206h-256v-206c-76-44-128-128-128-222 0-140 116-256 256-256zM896 490v0 84h-128v-84h128zM128 490v0 84h-128v-84h128z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-bulb" + ], + "defaultCode": 62316, + "grid": 0 + }, + "properties": { + "id": 26, + "order": 27, + "ligatures": "", + "prevSize": 32, + "code": 62316, + "name": "ion-android-bulb" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 25 + }, + { + "icon": { + "paths": [ + "M0 704v-408c0-150 164-168 352-168s352 18 352 168v408c0 36-28 48-54 72v78c0 24-18 42-42 42h-42c-24 0-44-18-44-42v-44h-340v44c0 24-20 42-44 42h-42c-24 0-42-18-42-42v-78c-26-24-54-34-54-72zM160 736c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM544 736c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM608 490v-212h-512v212h512z" + ], + "width": 704, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-bus" + ], + "defaultCode": 62317, + "grid": 0 + }, + "properties": { + "id": 27, + "order": 28, + "ligatures": "", + "prevSize": 32, + "code": 62317, + "name": "ion-android-bus" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 26 + }, + { + "icon": { + "paths": [ + "M608 544v192h-192v-192h192zM544 128h96v64h48c44 0 80 36 80 80v544c0 44-36 80-80 80h-608c-44 0-80-36-80-80v-544c0-44 36-80 80-80h48v-64h96v64h320v-64zM688 816v-424h-608v424h608z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-calendar" + ], + "defaultCode": 62161, + "grid": 0 + }, + "properties": { + "id": 28, + "order": 29, + "ligatures": "", + "prevSize": 32, + "code": 62161, + "name": "ion-android-calendar" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 27 + }, + { + "icon": { + "paths": [ + "M726 662c24 0 42 18 42 42v150c0 24-18 42-42 42-402 0-726-324-726-726 0-24 18-42 42-42h150c24 0 42 18 42 42 0 54 8 104 26 154 4 14 0 32-10 42l-94 94c62 122 160 220 282 282l94-94c10-12 28-14 42-10 46 14 98 24 152 24z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-call" + ], + "defaultCode": 62162, + "grid": 0 + }, + "properties": { + "id": 29, + "order": 30, + "ligatures": "", + "prevSize": 32, + "code": 62162, + "name": "ion-android-call" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 28 + }, + { + "icon": { + "paths": [ + "M322 560c0-84 42-126 126-126s126 42 126 126-42 126-126 126-126-42-126-126zM816 192c22 0 40 8 56 24s24 34 24 56v544c0 22-8 40-24 56s-34 24-56 24h-736c-22 0-40-8-56-24s-24-34-24-56v-544c0-22 8-40 24-56s34-24 56-24h176l64-64h256l64 64h176zM448 784c62 0 114-22 158-66s66-96 66-158-22-114-66-158-96-66-158-66-114 22-158 66-66 96-66 158 22 114 66 158 96 66 158 66z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-camera" + ], + "defaultCode": 62163, + "grid": 0 + }, + "properties": { + "id": 30, + "order": 31, + "ligatures": "", + "prevSize": 32, + "code": 62163, + "name": "ion-android-camera" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 29 + }, + { + "icon": { + "paths": [ + "M416 96c230 0 416 186 416 416s-186 416-416 416-416-186-416-416 186-416 416-416zM624 662l-150-150 150-150-58-58-150 150-150-150-58 58 150 150-150 150 58 58 150-150 150 150z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-cancel" + ], + "defaultCode": 62318, + "grid": 0 + }, + "properties": { + "id": 31, + "order": 32, + "ligatures": "", + "prevSize": 32, + "code": 62318, + "name": "ion-android-cancel" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 30 + }, + { + "icon": { + "paths": [ + "M678 234l90 236v320c0 24-18 42-42 42h-44c-24 0-42-18-42-42v-22h-512v22c0 24-18 42-42 42h-44c-24 0-42-18-42-42v-320l90-236c8-26 32-42 60-42h468c28 0 52 16 60 42zM150 640c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM618 640c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM86 426h596l-64-170h-468z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-car" + ], + "defaultCode": 62319, + "grid": 0 + }, + "properties": { + "id": 32, + "order": 33, + "ligatures": "", + "prevSize": 32, + "code": 62319, + "name": "ion-android-car" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 31 + }, + { + "icon": { + "paths": [ + "M244 756c46 0 82 36 82 82s-36 84-82 84-84-38-84-84 38-82 84-82zM0 102h136l38 84h616c22 0 42 18 42 40 0 8-2 16-4 20l-150 258c-14 28-40 44-72 44h-310l-42 64s-4 10-4 12c0 6 4 10 10 10h476v80h-486c-52 0-90-28-90-84 0-14 4-30 10-40l62-102-148-302h-84v-84zM652 756c46 0 84 36 84 82s-38 84-84 84-82-38-82-84 36-82 82-82z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-cart" + ], + "defaultCode": 62320, + "grid": 0 + }, + "properties": { + "id": 33, + "order": 34, + "ligatures": "", + "prevSize": 32, + "code": 62320, + "name": "ion-android-cart" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 32 + }, + { + "icon": { + "paths": [ + "M688 128c8 0 14 8 14 16v428c0 8-6 18-14 18h-374l-180 178v-178h-114c-8 0-20-10-20-18v-428c0-8 12-16 20-16h668zM816 254c8 0 16 10 16 18v428c0 8-8 18-16 18h-114v178l-180-178h-260l78-78h362c36 0 50-20 50-52v-334h64z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-chat" + ], + "defaultCode": 62164, + "grid": 0 + }, + "properties": { + "id": 34, + "order": 35, + "ligatures": "", + "prevSize": 32, + "code": 62164, + "name": "ion-android-chat" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 33 + }, + { + "icon": { + "paths": [ + "M682 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h596z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-checkbox-blank" + ], + "defaultCode": 62321, + "grid": 0 + }, + "properties": { + "id": 35, + "order": 36, + "ligatures": "", + "prevSize": 32, + "code": 62321, + "name": "ion-android-checkbox-blank" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 34 + }, + { + "icon": { + "paths": [ + "M682 214h-596v596h596v-596zM682 128v0c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h596z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-checkbox-outline-blank" + ], + "defaultCode": 62322, + "grid": 0 + }, + "properties": { + "id": 36, + "order": 37, + "ligatures": "", + "prevSize": 32, + "code": 62322, + "name": "ion-android-checkbox-outline-blank" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 35 + }, + { + "icon": { + "paths": [ + "M210 430l132 132 366-366 60 60-426 426-192-192zM682 810v-340h86v340c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h426v86h-426v596h596z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-checkbox-outline" + ], + "defaultCode": 62323, + "grid": 0 + }, + "properties": { + "id": 37, + "order": 38, + "ligatures": "", + "prevSize": 32, + "code": 62323, + "name": "ion-android-checkbox-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 36 + }, + { + "icon": { + "paths": [ + "M682 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h596zM298 726l384-384-60-60-324 324-152-154-60 60z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-checkbox" + ], + "defaultCode": 62324, + "grid": 0 + }, + "properties": { + "id": 38, + "order": 39, + "ligatures": "", + "prevSize": 32, + "code": 62324, + "name": "ion-android-checkbox" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 37 + }, + { + "icon": { + "paths": [ + "M246 432l128 128 358-356 58 58-416 416-186-186zM748 512h84c0 228-188 416-416 416s-416-188-416-416 188-416 416-416c56 0 108 12 156 32l-64 64c-30-8-60-12-92-12-184 0-332 148-332 332s148 332 332 332 332-148 332-332z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-checkmark-circle" + ], + "defaultCode": 62325, + "grid": 0 + }, + "properties": { + "id": 39, + "order": 40, + "ligatures": "", + "prevSize": 32, + "code": 62325, + "name": "ion-android-checkmark-circle" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 38 + }, + { + "icon": { + "paths": [ + "M682 160c46 0 86 40 86 86v628c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-628c0-46 40-86 86-86h174c14-56 64-96 124-96s110 40 124 96h174zM384 160c-24 0-42 18-42 42s18 44 42 44 42-20 42-44-18-42-42-42zM688 880v-640h-80v144h-448v-144h-80v640h608z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-clipboard" + ], + "defaultCode": 62326, + "grid": 0 + }, + "properties": { + "id": 40, + "order": 41, + "ligatures": "", + "prevSize": 32, + "code": 62326, + "name": "ion-android-clipboard" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 39 + }, + { + "icon": { + "paths": [ + "M596 274l-238 238 238 238-60 60-238-238-238 238-60-60 238-238-238-238 60-60 238 238 238-238z" + ], + "width": 596, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-close" + ], + "defaultCode": 62167, + "grid": 0 + }, + "properties": { + "id": 41, + "order": 42, + "ligatures": "", + "prevSize": 32, + "code": 62167, + "name": "ion-android-close" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 40 + }, + { + "icon": { + "paths": [ + "M416 96c228 0 416 188 416 416s-188 416-416 416-416-188-416-416 188-416 416-416zM604 678c58 0 104-46 104-104s-46-104-104-104h-22c0-92-74-166-166-166-76 0-142 52-160 124h-6c-68 0-126 58-126 126s58 124 126 124h354z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-cloud-circle" + ], + "defaultCode": 62327, + "grid": 0 + }, + "properties": { + "id": 42, + "order": 43, + "ligatures": "", + "prevSize": 32, + "code": 62327, + "name": "ion-android-cloud-circle" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 41 + }, + { + "icon": { + "paths": [ + "M774 434c104 6 186 92 186 198 0 110-90 200-200 200h-520c-132 0-240-108-240-240 0-124 94-226 214-238 50-96 150-162 266-162 146 0 266 104 294 242zM394 726l282-282-60-60-222 222-88-90-60 60z" + ], + "width": 960, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-cloud-done" + ], + "defaultCode": 62328, + "grid": 0 + }, + "properties": { + "id": 43, + "order": 44, + "ligatures": "", + "prevSize": 32, + "code": 62328, + "name": "ion-android-cloud-done" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 42 + }, + { + "icon": { + "paths": [ + "M774 434c104 6 186 92 186 198 0 110-90 200-200 200h-520c-132 0-240-108-240-240 0-124 94-226 214-238 50-96 150-162 266-162 146 0 266 104 294 242zM760 752c66 0 120-54 120-120s-54-120-120-120h-60v-20c0-122-98-220-220-220-102 0-186 68-212 160h-28c-88 0-160 72-160 160s72 160 160 160h520z" + ], + "width": 960, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-cloud-outline" + ], + "defaultCode": 62329, + "grid": 0 + }, + "properties": { + "id": 44, + "order": 45, + "ligatures": "", + "prevSize": 32, + "code": 62329, + "name": "ion-android-cloud-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 43 + }, + { + "icon": { + "paths": [ + "M774 434c104 6 186 92 186 198 0 110-90 200-200 200h-520c-132 0-240-108-240-240 0-124 94-226 214-238 50-96 150-162 266-162 146 0 266 104 294 242z" + ], + "width": 960, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-cloud" + ], + "defaultCode": 62330, + "grid": 0 + }, + "properties": { + "id": 45, + "order": 46, + "ligatures": "", + "prevSize": 32, + "code": 62330, + "name": "ion-android-cloud" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 44 + }, + { + "icon": { + "paths": [ + "M384 128c212 0 384 154 384 342 0 118-96 212-214 212h-76c-36 0-64 28-64 64 0 18 6 34 16 44s18 24 18 42c0 36-28 64-64 64-212 0-384-172-384-384s172-384 384-384zM150 512c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM278 342c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM490 342c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM618 512c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-color-palette" + ], + "defaultCode": 62331, + "grid": 0 + }, + "properties": { + "id": 46, + "order": 47, + "ligatures": "", + "prevSize": 32, + "code": 62331, + "name": "ion-android-color-palette" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 45 + }, + { + "icon": { + "paths": [ + "M448 462c26 0 50 24 50 50s-24 50-50 50-50-24-50-50 24-50 50-50zM448 64c246 0 448 202 448 448s-202 448-448 448-448-202-448-448 202-448 448-448zM546 610l170-366-366 170-170 366z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-compass" + ], + "defaultCode": 62332, + "grid": 0 + }, + "properties": { + "id": 47, + "order": 48, + "ligatures": "", + "prevSize": 32, + "code": 62332, + "name": "ion-android-compass" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 46 + }, + { + "icon": { + "paths": [ + "M534 676c118 36 208 116 234 220h-768c26-104 116-184 234-220 44 26 96 40 150 40s106-14 150-40zM384 128c146 0 264 118 264 264s-118 264-264 264-264-118-264-264 118-264 264-264zM384 590c84 0 156-52 184-126h-368c28 74 100 126 184 126z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-contact" + ], + "defaultCode": 62168, + "grid": 0 + }, + "properties": { + "id": 48, + "order": 49, + "ligatures": "", + "prevSize": 32, + "code": 62168, + "name": "ion-android-contact" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 47 + }, + { + "icon": { + "paths": [ + "M414 688c94 28 152 124 174 208h-588c22-84 80-180 174-208 36 20 76 32 120 32s84-12 120-32zM294 240c116 0 212 96 212 212s-96 212-212 212-212-96-212-212 96-212 212-212zM294 614c68 0 124-46 148-102h-296c24 56 80 102 148 102zM582 768c-26-40-68-86-120-106 22-18 42-46 56-70 26 10 54 16 84 16 44 0 84-12 120-32 94 28 152 108 174 192h-314zM550 400c-16-74-62-138-126-174 38-58 104-98 178-98 116 0 212 96 212 212s-96 212-212 212c-22 0-44-4-64-10 6-16 12-32 14-50 16 6 32 8 50 8 68 0 124-44 148-100h-200z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-contacts" + ], + "defaultCode": 62169, + "grid": 0 + }, + "properties": { + "id": 49, + "order": 50, + "ligatures": "", + "prevSize": 32, + "code": 62169, + "name": "ion-android-contacts" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 48 + }, + { + "icon": { + "paths": [ + "M0 742v-102h256v256h-102v-154h-154zM154 282v-154h102v256h-256v-102h154zM512 896v-256h256v102h-154v154h-102zM614 282h154v102h-256v-256h102v154z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-contract" + ], + "defaultCode": 62333, + "grid": 0 + }, + "properties": { + "id": 50, + "order": 51, + "ligatures": "", + "prevSize": 32, + "code": 62333, + "name": "ion-android-contract" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 49 + }, + { + "icon": { + "paths": [ + "M0 736l472-472 160 160-472 472h-160v-160zM756 300l-80 80-160-160 80-80c18-18 40-18 58 0l102 102c18 18 18 40 0 58z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-create" + ], + "defaultCode": 62334, + "grid": 0 + }, + "properties": { + "id": 51, + "order": 52, + "ligatures": "", + "prevSize": 32, + "code": 62334, + "name": "ion-android-create" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 50 + }, + { + "icon": { + "paths": [ + "M64 810v-490h512v490c0 46-40 86-86 86h-340c-46 0-86-40-86-86zM640 192v64h-640v-64h160l54-64h212l54 64h160z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-delete" + ], + "defaultCode": 62335, + "grid": 0 + }, + "properties": { + "id": 52, + "order": 53, + "ligatures": "", + "prevSize": 32, + "code": 62335, + "name": "ion-android-delete" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 51 + }, + { + "icon": { + "paths": [ + "M810 64c46 0 86 40 86 86v564c0 46-40 86-86 86h-276l84 96v64h-340v-64l84-96h-276c-46 0-86-40-86-86v-564c0-46 40-86 86-86h724zM810 640v-490h-724v490h724z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-desktop" + ], + "defaultCode": 62336, + "grid": 0 + }, + "properties": { + "id": 53, + "order": 54, + "ligatures": "", + "prevSize": 32, + "code": 62336, + "name": "ion-android-desktop" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 52 + }, + { + "icon": { + "paths": [ + "M384 96l256 256v496c0 44-36 80-80 80h-480c-44 0-80-36-80-80v-672c0-44 36-80 80-80h304zM352 384h224l-224-224v224z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-document" + ], + "defaultCode": 62337, + "grid": 0 + }, + "properties": { + "id": 54, + "order": 55, + "ligatures": "", + "prevSize": 32, + "code": 62337, + "name": "ion-android-document" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 53 + }, + { + "icon": { + "paths": [ + "M776 280l-280 278-62-62 280-278zM962 218l62 62-528 526-244-246 60-62 184 182zM0 560l64-62 244 246-62 62z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-done-all" + ], + "defaultCode": 62338, + "grid": 0 + }, + "properties": { + "id": 55, + "order": 56, + "ligatures": "", + "prevSize": 32, + "code": 62338, + "name": "ion-android-done-all" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 54 + }, + { + "icon": { + "paths": [ + "M244 680l460-460 64 62-524 522-244-244 64-62z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-done" + ], + "defaultCode": 62339, + "grid": 0 + }, + "properties": { + "id": 56, + "order": 57, + "ligatures": "", + "prevSize": 32, + "code": 62339, + "name": "ion-android-done" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 55 + }, + { + "icon": { + "paths": [ + "M774 434c104 6 186 92 186 198 0 110-90 200-200 200h-520c-132 0-240-108-240-240 0-124 94-226 214-238 50-96 150-162 266-162 146 0 266 104 294 242zM416 536h-136l200 200 200-200h-136v-152h-128v152z" + ], + "width": 960, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-download" + ], + "defaultCode": 62173, + "grid": 0 + }, + "properties": { + "id": 57, + "order": 58, + "ligatures": "", + "prevSize": 32, + "code": 62173, + "name": "ion-android-download" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 56 + }, + { + "icon": { + "paths": [ + "M896 404v406c0 46-40 86-86 86h-724c-46 0-86-40-86-86v-406c0-30 16-60 40-74l408-202 408 202c26 14 40 44 40 74zM448 608l342-224-342-170-342 170z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-drafts" + ], + "defaultCode": 62340, + "grid": 0 + }, + "properties": { + "id": 58, + "order": 59, + "ligatures": "", + "prevSize": 32, + "code": 62340, + "name": "ion-android-drafts" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 57 + }, + { + "icon": { + "paths": [ + "M302 666l110-112h-412v-84h414l-112-112 60-60 214 214-214 214zM682 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-170h86v170h596v-596h-596v170h-86v-170c0-46 40-86 86-86h596z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-exit" + ], + "defaultCode": 62341, + "grid": 0 + }, + "properties": { + "id": 59, + "order": 60, + "ligatures": "", + "prevSize": 32, + "code": 62341, + "name": "ion-android-exit" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 58 + }, + { + "icon": { + "paths": [ + "M666 794v-154h102v256h-256v-102h154zM666 230h-154v-102h256v256h-102v-154zM102 230v154h-102v-256h256v102h-154zM102 794h154v102h-256v-256h102v154z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-expand" + ], + "defaultCode": 62342, + "grid": 0 + }, + "properties": { + "id": 60, + "order": 61, + "ligatures": "", + "prevSize": 32, + "code": 62342, + "name": "ion-android-expand" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 59 + }, + { + "icon": { + "paths": [ + "M604 128c128 0 228 100 228 230 0 160-142 288-356 484l-60 54-60-54c-214-196-356-324-356-484 0-130 100-230 228-230 72 0 142 34 188 88 46-54 116-88 188-88zM442 786c100-92 188-172 246-244 56-70 80-126 80-184 0-46-18-88-48-118s-70-48-116-48c-52 0-106 26-140 66l-48 58-48-58c-34-40-88-66-140-66-46 0-86 18-116 48s-48 72-48 118c0 58 24 114 80 184 58 72 146 152 246 244l8 8 18 16 18-16z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-favorite-outline" + ], + "defaultCode": 62343, + "grid": 0 + }, + "properties": { + "id": 61, + "order": 62, + "ligatures": "", + "prevSize": 32, + "code": 62343, + "name": "ion-android-favorite-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 60 + }, + { + "icon": { + "paths": [ + "M416 896l-60-54c-214-196-356-324-356-484 0-130 100-230 228-230 72 0 142 34 188 88 46-54 116-88 188-88 128 0 228 100 228 230 0 160-142 288-356 484z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-favorite" + ], + "defaultCode": 62344, + "grid": 0 + }, + "properties": { + "id": 62, + "order": 63, + "ligatures": "", + "prevSize": 32, + "code": 62344, + "name": "ion-android-favorite" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 61 + }, + { + "icon": { + "paths": [ + "M560 128h80v768h-80v-86h-80v86h-320v-86h-80v86h-80v-768h80v86h80v-86h320v86h80v-86zM160 726v-86h-80v86h80zM160 554v-84h-80v84h80zM160 384v-86h-80v86h80zM560 726v-86h-80v86h80zM560 554v-84h-80v84h80zM560 384v-86h-80v86h80z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-film" + ], + "defaultCode": 62345, + "grid": 0 + }, + "properties": { + "id": 63, + "order": 64, + "ligatures": "", + "prevSize": 32, + "code": 62345, + "name": "ion-android-film" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 62 + }, + { + "icon": { + "paths": [ + "M810 288c46 0 86 40 86 86v372c0 46-40 86-86 86h-724c-46 0-86-40-86-86v-468c0-46 40-86 86-86h276l86 96h362zM832 746v-372c0-12-10-22-22-22h-746v394c0 12 10 22 22 22h724c12 0 22-10 22-22z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-folder-open" + ], + "defaultCode": 62346, + "grid": 0 + }, + "properties": { + "id": 64, + "order": 65, + "ligatures": "", + "prevSize": 32, + "code": 62346, + "name": "ion-android-folder-open" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 63 + }, + { + "icon": { + "paths": [ + "M362 192l86 96h362c46 0 86 40 86 86v372c0 46-40 86-86 86h-724c-46 0-86-40-86-86v-468c0-46 40-86 86-86h276z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-folder" + ], + "defaultCode": 62176, + "grid": 0 + }, + "properties": { + "id": 65, + "order": 66, + "ligatures": "", + "prevSize": 32, + "code": 62176, + "name": "ion-android-folder" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 64 + }, + { + "icon": { + "paths": [ + "M352 800v-96h192v96h-192zM0 224h896v96h-896v-96zM160 562v-100h576v100h-576z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-funnel" + ], + "defaultCode": 62347, + "grid": 0 + }, + "properties": { + "id": 66, + "order": 67, + "ligatures": "", + "prevSize": 32, + "code": 62347, + "name": "ion-android-funnel" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 65 + }, + { + "icon": { + "paths": [ + "M416 96c230 0 416 186 416 416s-186 416-416 416-416-186-416-416 186-416 416-416zM372 866c12-30 42-58 16-78-16-14-32-28-46-42-4-4-22-40-18-46 10-18 12-28 16-48 6-24-6-32-26-44-30-20-58-46-86-68-14-10-34-20-40-38s-10-40-20-56c-28-40-24-68-20-116 0-14-2-32-4-50-56 64-84 146-84 232 0 96 36 184 104 252 58 58 130 92 208 102zM668 764c46-46 78-102 94-164-16 2-38-4-38-4s-42-48-46-90c-4-44 0-78-6-114-6-32-40-62-54-92-14-28-26-56-40-84 4 2 10 4 14 6 10-2 20-4 28-4-46-32-98-50-152-58v16l8 18-28 26-18-6-20-20-20-24-28-10c-32 4-62 14-90 26v14c14-6 32-10 46-16 6-2 26 14 32 18-8 10-42 30-44 42 0 4 14 12 14 20 0 12-2 22-2 34 6-6 40-42 44-42 26-6 70 38 74 52s-44 48-66 68c-16 16-50 24-40 48 4 8 20 40 10 48-12 10-28-18-34-24-16-20-52-14-76-14 0 34-2 62 30 86 30 22 60 50 94 66 26 12 72-14 94 2 32 22 58 42 94 58 16 6 66 40 52 62-10 16-20 30-28 46s-26 40-40 50c-16 12-32 34-42 58 70-14 132-46 184-98z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-globe" + ], + "defaultCode": 62348, + "grid": 0 + }, + "properties": { + "id": 67, + "order": 68, + "ligatures": "", + "prevSize": 32, + "code": 62348, + "name": "ion-android-globe" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 66 + }, + { + "icon": { + "paths": [ + "M802 548c30 30 36 72 6 102 0 0-192 206-252 242v0c-56 42-130 68-200 68-110 0-202-72-234-170v0-2c0-2-2-4-2-6l-116-378c-10-30 4-64 34-74s60 6 70 36l68 176c2 8 4 4 4-2l-44-322c-6-30 14-60 44-66s60 16 66 46l50 276c0 4 4 4 4 0v-354c0-30 26-56 56-56s56 26 56 56l16 350c0 10 6 8 8 2l46-270c4-30 32-54 62-50s54 34 50 64l-42 344c-2 24-6 60 4 72 16 18 40 18 62-4l84-84c30-30 70-26 100 4z" + ], + "width": 828, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-hand" + ], + "defaultCode": 62179, + "grid": 0 + }, + "properties": { + "id": 68, + "order": 69, + "ligatures": "", + "prevSize": 32, + "code": 62179, + "name": "ion-android-hand" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 67 + }, + { + "icon": { + "paths": [ + "M352 96c194 0 352 154 352 344 0 182-152 392-352 488v-142c-194 0-352-156-352-346s158-344 352-344zM332 462v-122h-124v122h62l-42 80h62zM496 462v-122h-124v122h62l-40 80h62z" + ], + "width": 704, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-hangout" + ], + "defaultCode": 62349, + "grid": 0 + }, + "properties": { + "id": 69, + "order": 70, + "ligatures": "", + "prevSize": 32, + "code": 62349, + "name": "ion-android-hangout" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 68 + }, + { + "icon": { + "paths": [ + "M416 96c228 0 416 188 416 416s-186 416-416 416-416-188-416-416 186-416 416-416zM416 844c184 0 332-148 332-332s-148-332-332-332-332 148-332 332 148 332 332 332zM562 470c-36 0-62-26-62-62s26-62 62-62 62 26 62 62-26 62-62 62zM270 470c-36 0-62-26-62-62s26-62 62-62 62 26 62 62-26 62-62 62zM416 740c-98 0-178-58-212-144h424c-34 86-114 144-212 144z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-happy" + ], + "defaultCode": 62350, + "grid": 0 + }, + "properties": { + "id": 70, + "order": 71, + "ligatures": "", + "prevSize": 32, + "code": 62350, + "name": "ion-android-happy" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 69 + }, + { + "icon": { + "paths": [ + "M320 896h-196v-384h-124l416-384 416 384h-124v384h-196v-256h-192v256z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-home" + ], + "defaultCode": 62351, + "grid": 0 + }, + "properties": { + "id": 71, + "order": 72, + "ligatures": "", + "prevSize": 32, + "code": 62351, + "name": "ion-android-home" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 70 + }, + { + "icon": { + "paths": [ + "M768 810c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h596c46 0 86 40 86 86v596zM234 576l-148 192h596l-192-256-148 192z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-image" + ], + "defaultCode": 62180, + "grid": 0 + }, + "properties": { + "id": 72, + "order": 73, + "ligatures": "", + "prevSize": 32, + "code": 62180, + "name": "ion-android-image" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 71 + }, + { + "icon": { + "paths": [ + "M874 832h150c0 46-128 64-192 64h-640c-64 0-192-18-192-64h150c-46 0-86-40-86-86v-532c0-46 40-86 86-86h724c46 0 86 40 86 86v532c0 46-40 86-86 86zM150 214v544h724v-544h-724zM512 870c24 0 42-20 42-44s-18-42-42-42-42 18-42 42 18 44 42 44z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-laptop" + ], + "defaultCode": 62352, + "grid": 0 + }, + "properties": { + "id": 73, + "order": 74, + "ligatures": "", + "prevSize": 32, + "code": 62352, + "name": "ion-android-laptop" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 72 + }, + { + "icon": { + "paths": [ + "M688 128c44 0 80 36 80 80v608c0 44-36 80-80 80h-608c-44 0-80-36-80-80v-608c0-44 36-80 80-80h608zM480 736v-96h-320v96h320zM608 560v-96h-448v96h448zM608 384v-96h-448v96h448z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-list" + ], + "defaultCode": 62353, + "grid": 0 + }, + "properties": { + "id": 74, + "order": 75, + "ligatures": "", + "prevSize": 32, + "code": 62353, + "name": "ion-android-list" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 73 + }, + { + "icon": { + "paths": [ + "M448 352c88 0 160 72 160 160s-72 160-160 160-160-72-160-160 72-160 160-160zM830 470h66v84h-66c-20 178-162 320-340 340v66h-84v-66c-178-20-320-162-340-340h-66v-84h66c20-178 162-320 340-340v-66h84v66c178 20 320 162 340 340zM448 810c164 0 298-134 298-298s-134-298-298-298-298 134-298 298 134 298 298 298z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-locate" + ], + "defaultCode": 62185, + "grid": 0 + }, + "properties": { + "id": 75, + "order": 76, + "ligatures": "", + "prevSize": 32, + "code": 62185, + "name": "ion-android-locate" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 74 + }, + { + "icon": { + "paths": [ + "M560 372c44 0 80 36 80 80v400c0 44-36 80-80 80h-480c-44 0-80-36-80-80v-400c0-44 36-80 80-80h40v-80c0-110 90-200 200-200s200 90 200 200v80h40zM320 736c44 0 80-36 80-80s-36-80-80-80-80 36-80 80 36 80 80 80zM444 372v-80c0-68-56-124-124-124s-124 56-124 124v80h248z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-lock" + ], + "defaultCode": 62354, + "grid": 0 + }, + "properties": { + "id": 76, + "order": 77, + "ligatures": "", + "prevSize": 32, + "code": 62354, + "name": "ion-android-lock" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 75 + }, + { + "icon": { + "paths": [ + "M810 160c46 0 86 40 86 86v532c0 46-40 86-86 86h-724c-46 0-86-40-86-86v-532c0-46 40-86 86-86h724zM800 342v-86l-352 234-352-234v86l352 234z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-mail" + ], + "defaultCode": 62187, + "grid": 0 + }, + "properties": { + "id": 77, + "order": 78, + "ligatures": "", + "prevSize": 32, + "code": 62187, + "name": "ion-android-mail" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 76 + }, + { + "icon": { + "paths": [ + "M746 128c12 0 22 10 22 22v644c0 10-6 18-14 20l-242 82-256-90s-210 82-216 84-14 6-18 6c-12 0-22-10-22-22v-644c0-10 6-18 14-20l242-82 256 90s206-80 216-84 14-6 18-6zM512 810v-508l-256-88v508z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-map" + ], + "defaultCode": 62355, + "grid": 0 + }, + "properties": { + "id": 78, + "order": 79, + "ligatures": "", + "prevSize": 32, + "code": 62355, + "name": "ion-android-map" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 77 + }, + { + "icon": { + "paths": [ + "M0 768v-86h768v86h-768zM0 554v-84h768v84h-768zM0 256h768v86h-768v-86z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-menu" + ], + "defaultCode": 62356, + "grid": 0 + }, + "properties": { + "id": 79, + "order": 80, + "ligatures": "", + "prevSize": 32, + "code": 62356, + "name": "ion-android-menu" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 78 + }, + { + "icon": { + "paths": [ + "M632 710l116 116 68 66-48 48-190-190c-38 22-80 40-124 46v164h-92v-164c-150-20-274-152-274-306h78c0 136 116 234 242 234 40 0 80-10 114-28l-64-66c-16 6-32 10-50 10-76 0-138-62-138-138v-58l-270-268 48-48 222 220 308 308zM546 502c0 8 0 16-2 24l-274-274v-50c0-76 62-138 138-138s138 62 138 138v300zM730 490c0 62-20 120-54 168l-54-56c18-34 30-72 30-112h78zM816 892v0l-68-66z" + ], + "width": 816, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-microphone-off" + ], + "defaultCode": 62357, + "grid": 0 + }, + "properties": { + "id": 80, + "order": 81, + "ligatures": "", + "prevSize": 32, + "code": 62357, + "name": "ion-android-microphone-off" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 79 + }, + { + "icon": { + "paths": [ + "M320 640c-76 0-138-62-138-138v-300c0-76 62-138 138-138s138 62 138 138v300c0 76-62 138-138 138zM562 490h78c0 156-124 284-274 306v164h-92v-164c-150-20-274-150-274-306h78c0 138 116 232 242 232s242-94 242-232z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-microphone" + ], + "defaultCode": 62188, + "grid": 0 + }, + "properties": { + "id": 81, + "order": 82, + "ligatures": "", + "prevSize": 32, + "code": 62188, + "name": "ion-android-microphone" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 80 + }, + { + "icon": { + "paths": [ + "M80 432c44 0 80 36 80 80s-36 80-80 80-80-36-80-80 36-80 80-80zM560 432c44 0 80 36 80 80s-36 80-80 80-80-36-80-80 36-80 80-80zM320 432c44 0 80 36 80 80s-36 80-80 80-80-36-80-80 36-80 80-80z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-more-horizontal" + ], + "defaultCode": 62358, + "grid": 0 + }, + "properties": { + "id": 82, + "order": 83, + "ligatures": "", + "prevSize": 32, + "code": 62358, + "name": "ion-android-more-horizontal" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 81 + }, + { + "icon": { + "paths": [ + "M160 272c0 44-36 80-80 80s-80-36-80-80 36-80 80-80 80 36 80 80zM160 752c0 44-36 80-80 80s-80-36-80-80 36-80 80-80 80 36 80 80zM160 512c0 44-36 80-80 80s-80-36-80-80 36-80 80-80 80 36 80 80z" + ], + "width": 160, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-more-vertical" + ], + "defaultCode": 62359, + "grid": 0 + }, + "properties": { + "id": 83, + "order": 84, + "ligatures": "", + "prevSize": 32, + "code": 62359, + "name": "ion-android-more-vertical" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 82 + }, + { + "icon": { + "paths": [ + "M320 128l320 738-30 30-290-128-290 128-30-30z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-navigate" + ], + "defaultCode": 62360, + "grid": 0 + }, + "properties": { + "id": 84, + "order": 85, + "ligatures": "", + "prevSize": 32, + "code": 62360, + "name": "ion-android-navigate" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 83 + }, + { + "icon": { + "paths": [ + "M354 240h-4c-12 0-48 10-48 10-92 20-156 106-156 200v254l-18 20-16 16h480l-16-16-18-20v-254c0-94-64-180-156-200 0 0-34-10-48-10zM352 96v0c36 0 62 26 62 62v30c118 28 208 136 208 262v228l82 84v42h-704v-42l82-84v-228c0-126 90-234 208-262v-30c0-36 26-62 62-62zM434 844v0c0 46-36 84-82 84s-82-38-82-84h164z" + ], + "width": 704, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-notifications-none" + ], + "defaultCode": 62361, + "grid": 0 + }, + "properties": { + "id": 85, + "order": 86, + "ligatures": "", + "prevSize": 32, + "code": 62361, + "name": "ion-android-notifications-none" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 84 + }, + { + "icon": { + "paths": [ + "M364 928c-46 0-82-38-82-84h164c0 46-36 84-82 84zM114 214l614 614-48 48-72-72h-596v-42l82-82v-230c0-46 12-88 32-126l-126-128 48-48 66 66zM634 450v188l-416-414c26-16 54-30 84-36v-30c0-36 26-62 62-62s62 26 62 62v30c118 28 208 134 208 262z" + ], + "width": 728, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-notifications-off" + ], + "defaultCode": 62362, + "grid": 0 + }, + "properties": { + "id": 86, + "order": 87, + "ligatures": "", + "prevSize": 32, + "code": 62362, + "name": "ion-android-notifications-off" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 85 + }, + { + "icon": { + "paths": [ + "M352 928c-46 0-82-38-82-84h164c0 46-36 84-82 84zM622 678l82 84v42h-704v-42l82-84v-228c0-126 90-234 208-262v-30c0-36 26-62 62-62s62 26 62 62v30c118 28 208 136 208 262v228z" + ], + "width": 704, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-notifications" + ], + "defaultCode": 62363, + "grid": 0 + }, + "properties": { + "id": 87, + "order": 88, + "ligatures": "", + "prevSize": 32, + "code": 62363, + "name": "ion-android-notifications" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 86 + }, + { + "icon": { + "paths": [ + "M682 810v-266h86v266c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h266v86h-266v596h596zM448 128h320v320h-86v-174l-430 430-60-60 430-430h-174v-86z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-open" + ], + "defaultCode": 62364, + "grid": 0 + }, + "properties": { + "id": 88, + "order": 89, + "ligatures": "", + "prevSize": 32, + "code": 62364, + "name": "ion-android-open" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 87 + }, + { + "icon": { + "paths": [ + "M0 832v-64h544v64h-544zM736 832v-64h160v64h-160zM704 896c0 36-28 64-64 64v0c-36 0-64-28-64-64v-192c0-36 28-64 64-64v0c36 0 64 28 64 64v192zM0 544v-64h160v64h-160zM352 544v-64h544v64h-544zM320 608c0 36-28 64-64 64v0c-36 0-64-28-64-64v-192c0-36 28-64 64-64v0c36 0 64 28 64 64v192zM0 256v-64h544v64h-544zM736 256v-64h160v64h-160zM704 320c0 36-28 64-64 64v0c-36 0-64-28-64-64v-192c0-36 28-64 64-64v0c36 0 64 28 64 64v192z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-options" + ], + "defaultCode": 62365, + "grid": 0 + }, + "properties": { + "id": 89, + "order": 90, + "ligatures": "", + "prevSize": 32, + "code": 62365, + "name": "ion-android-options" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 88 + }, + { + "icon": { + "paths": [ + "M610 464c-68 0-122-54-122-120s54-120 122-120 124 54 124 120-56 120-124 120zM286 464c-68 0-124-54-124-120s56-120 124-120 122 54 122 120-54 120-122 120zM286 552c96 0 290 46 290 140v108h-576v-108c0-94 190-140 286-140zM610 574c96 0 286 24 286 118v108h-256v-108c0-60-18-82-64-116 14-2 22-2 34-2z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-people" + ], + "defaultCode": 62366, + "grid": 0 + }, + "properties": { + "id": 90, + "order": 91, + "ligatures": "", + "prevSize": 32, + "code": 62366, + "name": "ion-android-people" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 89 + }, + { + "icon": { + "paths": [ + "M576 512c-106 0-192-86-192-192s86-192 192-192 192 86 192 192-86 192-192 192zM576 608c128 0 384 64 384 192v96h-768v-96c0-128 256-192 384-192zM192 448h128v64h-128v128h-64v-128h-128v-64h128v-128h64v128z" + ], + "width": 960, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-person-add" + ], + "defaultCode": 62367, + "grid": 0 + }, + "properties": { + "id": 91, + "order": 92, + "ligatures": "", + "prevSize": 32, + "code": 62367, + "name": "ion-android-person-add" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 90 + }, + { + "icon": { + "paths": [ + "M384 512c-106 0-192-86-192-192s86-192 192-192 192 86 192 192-86 192-192 192zM384 608c128 0 384 64 384 192v96h-768v-96c0-128 256-192 384-192z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-person" + ], + "defaultCode": 62368, + "grid": 0 + }, + "properties": { + "id": 92, + "order": 93, + "ligatures": "", + "prevSize": 32, + "code": 62368, + "name": "ion-android-person" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 91 + }, + { + "icon": { + "paths": [ + "M896 718c0 46-38 82-82 82h-732c-44 0-82-36-82-82v-412c0-46 38-82 82-82h732c44 0 82 36 82 82v412zM160 728h576v-432h-576v432z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-phone-landscape" + ], + "defaultCode": 62369, + "grid": 0 + }, + "properties": { + "id": 93, + "order": 94, + "ligatures": "", + "prevSize": 32, + "code": 62369, + "name": "ion-android-phone-landscape" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 92 + }, + { + "icon": { + "paths": [ + "M494 64c46 0 82 38 82 82v732c0 44-36 82-82 82h-412c-46 0-82-38-82-82v-732c0-44 36-82 82-82h412zM504 800v-576h-432v576h432z" + ], + "width": 576, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-phone-portrait" + ], + "defaultCode": 62370, + "grid": 0 + }, + "properties": { + "id": 94, + "order": 95, + "ligatures": "", + "prevSize": 32, + "code": 62370, + "name": "ion-android-phone-portrait" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 93 + }, + { + "icon": { + "paths": [ + "M320 64c176 0 320 142 320 314 0 236-320 582-320 582s-320-346-320-582c0-172 144-314 320-314zM320 490c64 0 114-50 114-112s-50-112-114-112-114 50-114 112 50 112 114 112z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-pin" + ], + "defaultCode": 62371, + "grid": 0 + }, + "properties": { + "id": 95, + "order": 96, + "ligatures": "", + "prevSize": 32, + "code": 62371, + "name": "ion-android-pin" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 94 + }, + { + "icon": { + "paths": [ + "M768 672l-320-96v228l96 62v62l-160-32-160 32v-62l96-62v-228l-320 96v-80l320-208v-226c0-36 30-62 64-62s64 26 64 62v226l320 208v80z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-plane" + ], + "defaultCode": 62372, + "grid": 0 + }, + "properties": { + "id": 96, + "order": 97, + "ligatures": "", + "prevSize": 32, + "code": 62372, + "name": "ion-android-plane" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 95 + }, + { + "icon": { + "paths": [ + "M832 304c-38 428-26 624-26 624h-780s12-192-26-624h208c0-114 94-208 208-208s208 94 208 208h208zM416 148c-86 0-156 70-156 156h312c0-86-70-156-156-156zM312 796l286-170-286-168v338z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-playstore" + ], + "defaultCode": 62192, + "grid": 0 + }, + "properties": { + "id": 97, + "order": 98, + "ligatures": "", + "prevSize": 32, + "code": 62192, + "name": "ion-android-playstore" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 96 + }, + { + "icon": { + "paths": [ + "M704 320c70 0 128 58 128 128v278h-160v170h-512v-170h-160v-278c0-70 58-128 128-128h576zM608 832v-256h-384v256h384zM672 128v0 160h-512v-160h512z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-print" + ], + "defaultCode": 62373, + "grid": 0 + }, + "properties": { + "id": 98, + "order": 99, + "ligatures": "", + "prevSize": 32, + "code": 62373, + "name": "ion-android-print" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 97 + }, + { + "icon": { + "paths": [ + "M416 96c228 0 416 188 416 416s-188 416-416 416-416-188-416-416 188-416 416-416zM416 844c184 0 332-148 332-332s-148-332-332-332-332 148-332 332 148 332 332 332z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-radio-button-off" + ], + "defaultCode": 62374, + "grid": 0 + }, + "properties": { + "id": 99, + "order": 100, + "ligatures": "", + "prevSize": 32, + "code": 62374, + "name": "ion-android-radio-button-off" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 98 + }, + { + "icon": { + "paths": [ + "M416 304c114 0 208 94 208 208s-94 208-208 208-208-94-208-208 94-208 208-208zM416 96c228 0 416 188 416 416s-188 416-416 416-416-188-416-416 188-416 416-416zM416 844c184 0 332-148 332-332s-148-332-332-332-332 148-332 332 148 332 332 332z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-radio-button-on" + ], + "defaultCode": 62375, + "grid": 0 + }, + "properties": { + "id": 100, + "order": 101, + "ligatures": "", + "prevSize": 32, + "code": 62375, + "name": "ion-android-radio-button-on" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 99 + }, + { + "icon": { + "paths": [ + "M352 776c112 0 208-68 246-168h92c-42 148-176 256-338 256-196 0-352-158-352-352s158-352 352-352c96 0 184 40 248 104l104-104v308h-308l140-140c-46-48-112-80-184-80-146 0-264 118-264 264s118 264 264 264z" + ], + "width": 704, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-refresh" + ], + "defaultCode": 62376, + "grid": 0 + }, + "properties": { + "id": 101, + "order": 102, + "ligatures": "", + "prevSize": 32, + "code": 62376, + "name": "ion-android-refresh" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 100 + }, + { + "icon": { + "paths": [ + "M416 96c230 0 416 186 416 416s-186 416-416 416-416-186-416-416 186-416 416-416zM630 554v-84h-428v84h428z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-remove-circle" + ], + "defaultCode": 62377, + "grid": 0 + }, + "properties": { + "id": 102, + "order": 103, + "ligatures": "", + "prevSize": 32, + "code": 62377, + "name": "ion-android-remove-circle" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 101 + }, + { + "icon": { + "paths": [ + "M0 554v-84h640v84h-640z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-remove" + ], + "defaultCode": 62196, + "grid": 0 + }, + "properties": { + "id": 103, + "order": 104, + "ligatures": "", + "prevSize": 32, + "code": 62196, + "name": "ion-android-remove" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 102 + }, + { + "icon": { + "paths": [ + "M232 560l-182-178c-68-66-68-172 0-238l306 296zM528 484l-66 62 300 290-60 60-300-292-300 292-60-60s326-318 422-414c-30-64-8-154 62-222 82-80 202-98 264-34 66 62 48 178-34 258-68 68-160 90-228 60z" + ], + "width": 830, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-restaurant" + ], + "defaultCode": 62378, + "grid": 0 + }, + "properties": { + "id": 104, + "order": 105, + "ligatures": "", + "prevSize": 32, + "code": 62378, + "name": "ion-android-restaurant" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 103 + }, + { + "icon": { + "paths": [ + "M416 576c90 0 166 52 204 128h-408c38-76 114-128 204-128zM416 96c228 0 416 188 416 416s-186 416-416 416-416-188-416-416 186-416 416-416zM416 844c184 0 332-148 332-332s-148-332-332-332-332 148-332 332 148 332 332 332zM562 470c-36 0-62-26-62-62s26-62 62-62 62 26 62 62-26 62-62 62zM270 470c-36 0-62-26-62-62s26-62 62-62 62 26 62 62-26 62-62 62z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-sad" + ], + "defaultCode": 62379, + "grid": 0 + }, + "properties": { + "id": 105, + "order": 106, + "ligatures": "", + "prevSize": 32, + "code": 62379, + "name": "ion-android-sad" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 104 + }, + { + "icon": { + "paths": [ + "M548 610l220 220-66 66-218-220v-34l-14-12c-50 42-116 68-186 68-158 0-284-126-284-284s126-286 282-286c158 0 284 128 284 286 0 72-26 136-68 186l14 10h36zM284 610c110 0 198-86 198-196s-88-198-198-198-196 88-196 198 86 196 196 196z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-search" + ], + "defaultCode": 62197, + "grid": 0 + }, + "properties": { + "id": 106, + "order": 107, + "ligatures": "", + "prevSize": 32, + "code": 62197, + "name": "ion-android-search" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 105 + }, + { + "icon": { + "paths": [ + "M0 896v-298l596-86-596-86v-298l832 384z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-send" + ], + "defaultCode": 62198, + "grid": 0 + }, + "properties": { + "id": 107, + "order": 108, + "ligatures": "", + "prevSize": 32, + "code": 62198, + "name": "ion-android-send" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 106 + }, + { + "icon": { + "paths": [ + "M732 554l94 68c6 6 8 20 4 28l-86 142c-4 8-14 14-24 10l-108-42c-24 16-46 32-72 42l-16 110c-2 8-12 16-22 16h-170c-10 0-20-6-22-16l-16-110c-26-10-50-26-72-42l-108 42c-8 4-20-2-24-10l-86-142c-6-10-4-22 4-28l90-68c0-14-2-28-2-42s2-28 2-42l-92-68c-6-6-8-20-4-28l86-142c4-8 14-14 24-10l108 42c24-16 46-32 72-42l16-110c2-8 12-16 22-16h170c10 0 20 8 22 16l14 110c26 10 50 26 72 42l106-42c8-4 22 2 26 10l86 142c6 10 4 22-4 28l-90 68c0 14 2 28 2 42s0 30-2 42zM414 658c82 0 150-64 150-146s-68-146-150-146-148 64-148 146 66 146 148 146z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-settings" + ], + "defaultCode": 62199, + "grid": 0 + }, + "properties": { + "id": 108, + "order": 109, + "ligatures": "", + "prevSize": 32, + "code": 62199, + "name": "ion-android-settings" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 107 + }, + { + "icon": { + "paths": [ + "M640 688c68 0 124 56 124 124s-56 124-124 124-124-56-124-124c0-10 2-20 4-28l-304-176c-24 22-54 34-88 34-70 0-128-58-128-128s56-128 126-128c34 0 64 12 88 34l302-174c-2-10-4-20-4-30 0-70 58-128 128-128s128 58 128 128-58 128-128 128c-34 0-64-12-88-34l-302 174c2 10 4 20 4 30s-2 20-4 30l306 176c22-22 52-32 84-32z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-share-alt" + ], + "defaultCode": 62380, + "grid": 0 + }, + "properties": { + "id": 109, + "order": 110, + "ligatures": "", + "prevSize": 32, + "code": 62380, + "name": "ion-android-share-alt" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 108 + }, + { + "icon": { + "paths": [ + "M768 496l-320 294v-176c-214 0-342 68-448 218 42-214 150-428 448-470v-170z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-share" + ], + "defaultCode": 62200, + "grid": 0 + }, + "properties": { + "id": 110, + "order": 111, + "ligatures": "", + "prevSize": 32, + "code": 62200, + "name": "ion-android-share" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 109 + }, + { + "icon": { + "paths": [ + "M808 420l-220 192 66 284-250-150-250 150 66-284-220-192 290-24 114-268 114 268zM438 690l120 72-32-136-10-38 30-24 106-92-140-12-38-4-16-36-54-128v378z" + ], + "width": 808, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-star-half" + ], + "defaultCode": 62381, + "grid": 0 + }, + "properties": { + "id": 111, + "order": 112, + "ligatures": "", + "prevSize": 32, + "code": 62381, + "name": "ion-android-star-half" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 110 + }, + { + "icon": { + "paths": [ + "M808 420l-220 192 66 284-250-150-250 150 66-284-220-192 290-24 114-268 114 268zM438 690l120 72-32-136-10-38 30-24 106-92-140-12-38-4-16-36-54-128-54 128-16 36-38 4-140 12 106 92 30 24-10 38-32 136 120-72 34-20z" + ], + "width": 808, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-star-outline" + ], + "defaultCode": 62382, + "grid": 0 + }, + "properties": { + "id": 112, + "order": 113, + "ligatures": "", + "prevSize": 32, + "code": 62382, + "name": "ion-android-star-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 111 + }, + { + "icon": { + "paths": [ + "M404 746l-250 150 66-284-220-192 290-24 114-268 114 268 290 24-220 192 66 284z" + ], + "width": 808, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-star" + ], + "defaultCode": 62204, + "grid": 0 + }, + "properties": { + "id": 113, + "order": 114, + "ligatures": "", + "prevSize": 32, + "code": 62204, + "name": "ion-android-star" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 112 + }, + { + "icon": { + "paths": [ + "M336 614v-262h96v262h-96zM688 340c50 66 80 148 80 236 0 212-172 384-384 384s-384-172-384-384 172-384 384-384c88 0 170 30 236 80l62-60 66 66zM596 788c56-56 88-132 88-212s-32-156-88-212-132-88-212-88-156 32-212 88-88 132-88 212 32 156 88 212 132 88 212 88 156-32 212-88zM256 160v-96h256v96h-256z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-stopwatch" + ], + "defaultCode": 62205, + "grid": 0 + }, + "properties": { + "id": 114, + "order": 115, + "ligatures": "", + "prevSize": 32, + "code": 62205, + "name": "ion-android-stopwatch" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 113 + }, + { + "icon": { + "paths": [ + "M352 96c188 0 352 20 352 170v428c0 84-66 148-150 148l54 54v32h-512v-32l54-54c-84 0-150-64-150-148v-428c0-150 164-170 352-170zM160 768c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM320 480v-192h-224v192h224zM544 768c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM608 480v-192h-224v192h224z" + ], + "width": 704, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-subway" + ], + "defaultCode": 62383, + "grid": 0 + }, + "properties": { + "id": 115, + "order": 116, + "ligatures": "", + "prevSize": 32, + "code": 62383, + "name": "ion-android-subway" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 114 + }, + { + "icon": { + "paths": [ + "M448 320c-50 0-100 20-136 56s-56 86-56 136 20 100 56 136 86 56 136 56 100-20 136-56 56-86 56-136-20-100-56-136-86-56-136-56zM490 64v0 128h-84v-128h84zM748 152v0l60 60-76 76-60-60zM148 152v0l76 76-60 60-76-76zM448 256v0c140 0 256 116 256 256s-116 256-256 256-256-116-256-256 116-256 256-256zM896 470v0 84h-128v-84h128zM128 470v0 84h-128v-84h128zM732 736v0l76 76-60 60-76-76zM164 736v0l60 60-76 76-60-60zM490 832v0 128h-84v-128h84z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-sunny" + ], + "defaultCode": 62384, + "grid": 0 + }, + "properties": { + "id": 116, + "order": 117, + "ligatures": "", + "prevSize": 32, + "code": 62384, + "name": "ion-android-sunny" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 115 + }, + { + "icon": { + "paths": [ + "M320 186c176 0 320 146 320 326 0 64-18 124-50 174l-58-60c18-34 28-74 28-114 0-134-108-244-240-244v122l-160-164 160-162v122zM320 756v-122l160 164-160 162v-122c-176 0-320-146-320-326 0-64 18-126 50-174l58 60c-18 34-28 74-28 114 0 134 108 244 240 244z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-sync" + ], + "defaultCode": 62385, + "grid": 0 + }, + "properties": { + "id": 117, + "order": 118, + "ligatures": "", + "prevSize": 32, + "code": 62385, + "name": "ion-android-sync" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 116 + }, + { + "icon": { + "paths": [ + "M688 128c44 0 80 36 80 80v480c0 44-36 80-80 80h-560l-128 128v-688c0-44 20-80 64-80h624zM268 484v-80h-76v80h76zM422 484v-80h-76v80h76zM576 484v-80h-76v80h76z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-textsms" + ], + "defaultCode": 62386, + "grid": 0 + }, + "properties": { + "id": 118, + "order": 119, + "ligatures": "", + "prevSize": 32, + "code": 62386, + "name": "ion-android-textsms" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 117 + }, + { + "icon": { + "paths": [ + "M426 86c234 0 426 192 426 426s-190 426-426 426-426-192-426-426 190-426 426-426zM426 852c188 0 340-152 340-340s-152-340-340-340-340 152-340 340 152 340 340 340zM448 300v222l192 114-32 52-224-134v-254h64z" + ], + "width": 852, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-time" + ], + "defaultCode": 62387, + "grid": 0 + }, + "properties": { + "id": 119, + "order": 120, + "ligatures": "", + "prevSize": 32, + "code": 62387, + "name": "ion-android-time" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 118 + }, + { + "icon": { + "paths": [ + "M0 694v-428c0-150 164-170 352-170s352 20 352 170v428c0 84-66 148-150 148l54 54v32h-512v-32l54-54c-84 0-150-64-150-148zM352 752c44 0 80-36 80-80s-36-80-80-80-80 36-80 80 36 80 80 80zM608 448v-192h-512v192h512z" + ], + "width": 704, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-train" + ], + "defaultCode": 62388, + "grid": 0 + }, + "properties": { + "id": 120, + "order": 121, + "ligatures": "", + "prevSize": 32, + "code": 62388, + "name": "ion-android-train" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 119 + }, + { + "icon": { + "paths": [ + "M560 372c44 0 80 36 80 80v400c0 44-36 80-80 80h-480c-44 0-80-36-80-80v-400c0-44 36-80 80-80h364v-80c0-68-56-124-124-124s-124 56-124 124h-76c0-110 90-200 200-200s200 90 200 200v80h40zM320 736c44 0 80-36 80-80s-36-80-80-80-80 36-80 80 36 80 80 80z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-unlock" + ], + "defaultCode": 62389, + "grid": 0 + }, + "properties": { + "id": 121, + "order": 122, + "ligatures": "", + "prevSize": 32, + "code": 62389, + "name": "ion-android-unlock" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 120 + }, + { + "icon": { + "paths": [ + "M774 434c104 6 186 92 186 198 0 110-90 200-200 200h-520c-132 0-240-108-240-240 0-124 94-226 214-238 50-96 150-162 266-162 146 0 266 104 294 242zM544 552h136l-200-200-200 200h136v152h128v-152z" + ], + "width": 960, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-upload" + ], + "defaultCode": 62390, + "grid": 0 + }, + "properties": { + "id": 122, + "order": 123, + "ligatures": "", + "prevSize": 32, + "code": 62390, + "name": "ion-android-upload" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 121 + }, + { + "icon": { + "paths": [ + "M0 384h170l214-224v704l-214-224h-170v-256zM576 512c0 76-42 146-106 176v-354c64 32 106 102 106 178z" + ], + "width": 576, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-volume-down" + ], + "defaultCode": 62391, + "grid": 0 + }, + "properties": { + "id": 123, + "order": 124, + "ligatures": "", + "prevSize": 32, + "code": 62391, + "name": "ion-android-volume-down" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 122 + }, + { + "icon": { + "paths": [ + "M0 384h170l214-224v704l-214-224h-170v-256z" + ], + "width": 384, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-volume-mute" + ], + "defaultCode": 62392, + "grid": 0 + }, + "properties": { + "id": 124, + "order": 125, + "ligatures": "", + "prevSize": 32, + "code": 62392, + "name": "ion-android-volume-mute" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 123 + }, + { + "icon": { + "paths": [ + "M684 512c0-138-90-256-214-294v-90c170 40 298 198 298 384 0 70-16 136-48 192l-64-64c18-38 28-82 28-128zM384 160v208l-102-102zM714 794v0l48 48-48 48-80-80c-46 42-102 72-164 86v-90c38-12 74-30 104-56l-190-190v304l-214-224h-170v-256h170l18-20-182-182 48-48zM576 512c0 14 0 30-4 44l-102-102v-120c64 32 106 102 106 178z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-volume-off" + ], + "defaultCode": 62393, + "grid": 0 + }, + "properties": { + "id": 125, + "order": 126, + "ligatures": "", + "prevSize": 32, + "code": 62393, + "name": "ion-android-volume-off" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 124 + }, + { + "icon": { + "paths": [ + "M0 384h170l214-224v704l-214-224h-170v-256zM576 512c0 76-42 146-106 176v-354c64 32 106 102 106 178zM470 128c170 40 298 198 298 384s-128 344-298 384v-90c124-38 212-156 212-294s-88-256-212-294v-90z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-volume-up" + ], + "defaultCode": 62394, + "grid": 0 + }, + "properties": { + "id": 126, + "order": 127, + "ligatures": "", + "prevSize": 32, + "code": 62394, + "name": "ion-android-volume-up" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 125 + }, + { + "icon": { + "paths": [ + "M336 224c-44 0-80-36-80-80s36-80 80-80 80 36 80 80-36 80-80 80zM336 464l-40-76-40 124 114 192v256h-76v-192l-100-136-114 328h-80l162-640-82 32v160h-80v-224l222-76c8-2 20-2 26-2 26 0 46 12 62 36l90 138h144v80h-208z" + ], + "width": 544, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-walk" + ], + "defaultCode": 62395, + "grid": 0 + }, + "properties": { + "id": 127, + "order": 128, + "ligatures": "", + "prevSize": 32, + "code": 62395, + "name": "ion-android-walk" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 126 + }, + { + "icon": { + "paths": [ + "M0 928l448-832 448 832h-896zM496 800v-96h-96v96h96zM496 640v-192h-96v192h96z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-warning" + ], + "defaultCode": 62396, + "grid": 0 + }, + "properties": { + "id": 128, + "order": 129, + "ligatures": "", + "prevSize": 32, + "code": 62396, + "name": "ion-android-warning" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 127 + }, + { + "icon": { + "paths": [ + "M640 512c0 102-48 192-122 250l-38 230h-320l-38-230c-74-58-122-148-122-250s48-192 122-250l38-230h320l38 230c74 58 122 148 122 250zM80 512c0 132 108 240 240 240s240-108 240-240-108-240-240-240-240 108-240 240z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-watch" + ], + "defaultCode": 62397, + "grid": 0 + }, + "properties": { + "id": 129, + "order": 130, + "ligatures": "", + "prevSize": 32, + "code": 62397, + "name": "ion-android-watch" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 128 + }, + { + "icon": { + "paths": [ + "M416 458c46 0 84 36 84 82s-38 82-84 82-84-36-84-82 38-82 84-82zM666 540c0 90-52 170-126 214l-40-72c50-28 82-80 82-142 0-90-74-164-166-164s-166 74-166 164c0 62 32 114 82 142l-40 72c-74-44-126-124-126-214 0-136 112-248 250-248s250 112 250 248zM416 128c228 0 416 186 416 412 0 152-84 284-208 356l-42-72c100-56 166-162 166-284 0-182-148-330-332-330s-332 148-332 330c0 122 66 226 166 284l-42 72c-124-72-208-204-208-356 0-226 188-412 416-412z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-android-wifi" + ], + "defaultCode": 62213, + "grid": 0 + }, + "properties": { + "id": 130, + "order": 131, + "ligatures": "", + "prevSize": 32, + "code": 62213, + "name": "ion-android-wifi" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 129 + }, + { + "icon": { + "paths": [ + "M448 64c248 0 448 200 448 448s-200 448-448 448-448-200-448-448 200-448 448-448zM720 784c72-72 112-170 112-272s-40-200-112-272-170-112-272-112-200 40-272 112-112 170-112 272 40 200 112 272 170 112 272 112 200-40 272-112zM336 212l112 172h-294c34-80 100-142 182-172zM762 576h-204l144-258c42 54 66 120 66 194 0 22-2 44-6 64zM656 268l-98 180-156-252c16-2 30-4 46-4 80 0 152 28 208 76zM134 448h204l-144 258c-42-54-66-120-66-194 0-22 2-44 6-64zM560 812l-112-172h294c-34 80-100 142-182 172zM240 756l98-180 156 252c-16 2-30 4-46 4-80 0-152-28-208-76z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-aperture" + ], + "defaultCode": 62227, + "grid": 0 + }, + "properties": { + "id": 131, + "order": 132, + "ligatures": "", + "prevSize": 32, + "code": 62227, + "name": "ion-aperture" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 130 + }, + { + "icon": { + "paths": [ + "M448 616l-256-232h160v-192h192v192h160zM866 594c22 12 34 38 30 64l-18 134c-4 26-18 40-56 40h-748c-36 0-52-14-56-40l-18-134c-4-26 6-52 28-64l144-110h84l-124 124h100c4 0 10 2 12 6l36 90h336l36-90c2-4 6-6 10-6h102l-124-124h84z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-archive" + ], + "defaultCode": 61698, + "grid": 0 + }, + "properties": { + "id": 132, + "order": 133, + "ligatures": "", + "prevSize": 32, + "code": 61698, + "name": "ion-archive" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 131 + }, + { + "icon": { + "paths": [ + "M384 896l-384-384h224v-384h320v384h224z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-arrow-down-a" + ], + "defaultCode": 61699, + "grid": 0 + }, + "properties": { + "id": 133, + "order": 134, + "ligatures": "", + "prevSize": 32, + "code": 61699, + "name": "ion-arrow-down-a" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 132 + }, + { + "icon": { + "paths": [ + "M6 370c-4-4-6-12-6-18 0-18 16-32 34-32v0h572c18 0 34 14 34 32 0 6-2 12-6 16l-4 6-272 312c-10 10-22 18-38 18s-28-8-38-18l-272-312z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-arrow-down-b" + ], + "defaultCode": 61700, + "grid": 0 + }, + "properties": { + "id": 134, + "order": 135, + "ligatures": "", + "prevSize": 32, + "code": 61700, + "name": "ion-arrow-down-b" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 133 + }, + { + "icon": { + "paths": [ + "M530 646l-210 200c-12 12-28 18-46 18s-32-6-44-18l-212-200c-24-24-24-62 0-86s68-24 92 0l100 96v-434c0-34 28-62 64-62s64 28 64 62v434l100-96c24-24 68-24 92 0s24 62 0 86z" + ], + "width": 548, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-arrow-down-c" + ], + "defaultCode": 61701, + "grid": 0 + }, + "properties": { + "id": 135, + "order": 136, + "ligatures": "", + "prevSize": 32, + "code": 61701, + "name": "ion-arrow-down-c" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 134 + }, + { + "icon": { + "paths": [ + "M356 420l128-128-100-100h256v256l-100-100-128 128zM356 604l56-56 128 128 100-100v256h-256l100-100zM284 604l-128 128 100 100h-256v-256l100 100 128-128zM284 420l-56 56-128-128-100 100v-256h256l-100 100z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-arrow-expand" + ], + "defaultCode": 62046, + "grid": 0 + }, + "properties": { + "id": 136, + "order": 137, + "ligatures": "", + "prevSize": 32, + "code": 62046, + "name": "ion-arrow-expand" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 135 + }, + { + "icon": { + "paths": [ + "M0 768v-320l122 122 262-282 214 224 298-256-298 406-214-214-188 196 124 124h-320z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-arrow-graph-down-left" + ], + "defaultCode": 62047, + "grid": 0 + }, + "properties": { + "id": 137, + "order": 138, + "ligatures": "", + "prevSize": 32, + "code": 62047, + "name": "ion-arrow-graph-down-left" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 136 + }, + { + "icon": { + "paths": [ + "M576 768l124-124-188-196-214 214-298-406 298 256 214-224 262 282 122-122v320h-320z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-arrow-graph-down-right" + ], + "defaultCode": 62048, + "grid": 0 + }, + "properties": { + "id": 138, + "order": 139, + "ligatures": "", + "prevSize": 32, + "code": 62048, + "name": "ion-arrow-graph-down-right" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 137 + }, + { + "icon": { + "paths": [ + "M320 256l-124 124 188 196 214-214 298 406-298-256-214 224-262-282-122 122v-320h320z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-arrow-graph-up-left" + ], + "defaultCode": 62049, + "grid": 0 + }, + "properties": { + "id": 139, + "order": 140, + "ligatures": "", + "prevSize": 32, + "code": 62049, + "name": "ion-arrow-graph-up-left" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 138 + }, + { + "icon": { + "paths": [ + "M576 256h320v320l-122-122-262 282-214-224-298 256 298-406 214 214 188-196z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-arrow-graph-up-right" + ], + "defaultCode": 62050, + "grid": 0 + }, + "properties": { + "id": 140, + "order": 141, + "ligatures": "", + "prevSize": 32, + "code": 62050, + "name": "ion-arrow-graph-up-right" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 139 + }, + { + "icon": { + "paths": [ + "M0 512l384-384v224h384v320h-384v224z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-arrow-left-a" + ], + "defaultCode": 61702, + "grid": 0 + }, + "properties": { + "id": 141, + "order": 142, + "ligatures": "", + "prevSize": 32, + "code": 61702, + "name": "ion-arrow-left-a" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 140 + }, + { + "icon": { + "paths": [ + "M334 198c4-4 12-6 18-6 18 0 32 16 32 34v0 572c0 18-14 34-32 34-6 0-14-2-18-6l-4-4-312-272c-10-10-18-22-18-38s8-28 18-38l312-272z" + ], + "width": 384, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-arrow-left-b" + ], + "defaultCode": 61703, + "grid": 0 + }, + "properties": { + "id": 142, + "order": 143, + "ligatures": "", + "prevSize": 32, + "code": 61703, + "name": "ion-arrow-left-b" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 141 + }, + { + "icon": { + "paths": [ + "M218 256c24-24 64-24 88 0s24 68 0 92l-98 100h434c34 0 62 28 62 64s-28 64-62 64h-434l96 100c24 24 24 68 0 92s-62 24-86 0l-200-212c-12-12-18-26-18-44s6-34 18-46z" + ], + "width": 704, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-arrow-left-c" + ], + "defaultCode": 61704, + "grid": 0 + }, + "properties": { + "id": 143, + "order": 144, + "ligatures": "", + "prevSize": 32, + "code": 61704, + "name": "ion-arrow-left-c" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 142 + }, + { + "icon": { + "paths": [ + "M896 512l-192 192v-152h-218l2 216h152l-192 192-192-192h152v-216h-216v152l-192-192 192-192v152h216v-216h-152l192-192 192 192h-152v216h216v-152z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-arrow-move" + ], + "defaultCode": 62051, + "grid": 0 + }, + "properties": { + "id": 144, + "order": 145, + "ligatures": "", + "prevSize": 32, + "code": 62051, + "name": "ion-arrow-move" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 143 + }, + { + "icon": { + "paths": [ + "M384 192h256v256l-100-100-384 384 100 100h-256v-256l100 100 384-384z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-arrow-resize" + ], + "defaultCode": 62052, + "grid": 0 + }, + "properties": { + "id": 145, + "order": 146, + "ligatures": "", + "prevSize": 32, + "code": 62052, + "name": "ion-arrow-resize" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 144 + }, + { + "icon": { + "paths": [ + "M256 192v128h496c8 0 16 8 16 16v480c0 8-8 16-16 16h-608c-8 0-16-8-16-16v-96c0-8 8-16 16-16h496v-256h-384v128l-256-192z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-arrow-return-left" + ], + "defaultCode": 62053, + "grid": 0 + }, + "properties": { + "id": 146, + "order": 147, + "ligatures": "", + "prevSize": 32, + "code": 62053, + "name": "ion-arrow-return-left" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 145 + }, + { + "icon": { + "paths": [ + "M768 384l-256 192v-128h-384v256h496c8 0 16 8 16 16v96c0 8-8 16-16 16h-608c-8 0-16-8-16-16v-480c0-8 8-16 16-16h496v-128z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-arrow-return-right" + ], + "defaultCode": 62054, + "grid": 0 + }, + "properties": { + "id": 147, + "order": 148, + "ligatures": "", + "prevSize": 32, + "code": 62054, + "name": "ion-arrow-return-right" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 146 + }, + { + "icon": { + "paths": [ + "M768 512l-384 384v-224h-384v-320h384v-224z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-arrow-right-a" + ], + "defaultCode": 61705, + "grid": 0 + }, + "properties": { + "id": 148, + "order": 149, + "ligatures": "", + "prevSize": 32, + "code": 61705, + "name": "ion-arrow-right-a" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 147 + }, + { + "icon": { + "paths": [ + "M50 826c-4 4-12 6-18 6-18 0-32-16-32-34v0-572c0-18 14-34 32-34 6 0 12 2 16 6l6 4 312 272c10 10 18 22 18 38s-8 28-18 38l-312 272z" + ], + "width": 384, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-arrow-right-b" + ], + "defaultCode": 61706, + "grid": 0 + }, + "properties": { + "id": 149, + "order": 150, + "ligatures": "", + "prevSize": 32, + "code": 61706, + "name": "ion-arrow-right-b" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 148 + }, + { + "icon": { + "paths": [ + "M486 256l200 210c12 12 18 28 18 46s-6 32-18 44l-200 212c-24 24-62 24-86 0s-24-68 0-92l96-100h-434c-34 0-62-28-62-64s28-64 62-64h434l-98-100c-24-24-24-68 0-92s64-24 88 0z" + ], + "width": 704, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-arrow-right-c" + ], + "defaultCode": 61707, + "grid": 0 + }, + "properties": { + "id": 150, + "order": 151, + "ligatures": "", + "prevSize": 32, + "code": 61707, + "name": "ion-arrow-right-c" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 149 + }, + { + "icon": { + "paths": [ + "M768 184l-164 164 100 100h-256v-256l100 100 164-164zM768 840l-56 56-164-164-100 100v-256h256l-100 100zM0 840l164-164-100-100h256v256l-100-100-164 164zM0 184l56-56 164 164 100-100v256h-256l100-100z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-arrow-shrink" + ], + "defaultCode": 62055, + "grid": 0 + }, + "properties": { + "id": 151, + "order": 152, + "ligatures": "", + "prevSize": 32, + "code": 62055, + "name": "ion-arrow-shrink" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 150 + }, + { + "icon": { + "paths": [ + "M0 656c0-8 8-16 16-16h496v-128l256 192-256 192v-128h-496c-8 0-16-8-16-16v-96zM768 368c0 8-8 16-16 16h-496v128l-256-192 256-192v128h496c8 0 16 8 16 16v96z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-arrow-swap" + ], + "defaultCode": 62056, + "grid": 0 + }, + "properties": { + "id": 152, + "order": 153, + "ligatures": "", + "prevSize": 32, + "code": 62056, + "name": "ion-arrow-swap" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 151 + }, + { + "icon": { + "paths": [ + "M384 128l384 384h-224v384h-320v-384h-224z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-arrow-up-a" + ], + "defaultCode": 61708, + "grid": 0 + }, + "properties": { + "id": 153, + "order": 154, + "ligatures": "", + "prevSize": 32, + "code": 61708, + "name": "ion-arrow-up-a" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 152 + }, + { + "icon": { + "paths": [ + "M634 654c4 4 6 12 6 18 0 18-16 32-34 32v0h-572c-18 0-34-14-34-32 0-6 2-12 6-16l4-6 272-312c10-10 22-18 38-18s28 8 38 18l272 312z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-arrow-up-b" + ], + "defaultCode": 61709, + "grid": 0 + }, + "properties": { + "id": 154, + "order": 155, + "ligatures": "", + "prevSize": 32, + "code": 61709, + "name": "ion-arrow-up-b" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 153 + }, + { + "icon": { + "paths": [ + "M18 378l210-200c12-12 28-18 46-18s32 6 44 18l212 200c24 24 24 62 0 86s-68 24-92 0l-100-96v434c0 34-28 62-64 62s-64-28-64-62v-434l-100 98c-24 24-68 24-92 0s-24-64 0-88z" + ], + "width": 548, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-arrow-up-c" + ], + "defaultCode": 61710, + "grid": 0 + }, + "properties": { + "id": 155, + "order": 156, + "ligatures": "", + "prevSize": 32, + "code": 61710, + "name": "ion-arrow-up-c" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 154 + }, + { + "icon": { + "paths": [ + "M896 448v128l-372-20 208 340-112 64-172-352-172 352-112-64 208-340-372 20v-128l374 14-218-334 120-64 172 352 172-352 120 64-218 334z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-asterisk" + ], + "defaultCode": 62228, + "grid": 0 + }, + "properties": { + "id": 156, + "order": 157, + "ligatures": "", + "prevSize": 32, + "code": 62228, + "name": "ion-asterisk" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 155 + }, + { + "icon": { + "paths": [ + "M844 814c-48 50-104 86-170 110s-138 36-210 36c-70 0-132-12-190-34s-106-52-146-92-72-86-94-142-34-116-34-180 12-124 36-178 58-102 100-142 92-70 148-94c56-22 116-34 180-34 56 0 110 8 162 24s98 40 138 72 72 72 96 120 36 106 36 170c0 48-6 92-20 128s-32 68-54 92-48 44-76 56-58 20-90 20-58-8-78-24-30-34-30-58h-6c-12 20-30 38-56 56s-56 26-92 26c-56 0-98-18-128-54s-46-84-46-142c0-34 6-68 18-100s28-62 48-88 46-46 76-62 62-24 98-24c30 0 54 8 76 20 20 12 36 30 42 48h2l10-48h108l-48 226c-2 12-4 24-6 38s-4 26-4 38c0 14 2 26 8 36s14 14 30 14c32 0 58-18 78-52s32-80 32-136c0-48-8-90-24-128s-40-68-68-94-64-46-104-58-82-18-130-18c-52 0-98 8-140 26s-78 44-108 76-54 68-70 112c-16 42-26 88-26 138 0 52 8 102 26 144s42 78 74 108 70 54 114 70 92 24 144 24c66 0 122-12 170-32s90-50 130-86zM462 376c-20 0-36 4-50 16s-28 26-38 44-16 36-22 56-8 40-8 60c0 10 0 20 2 32 2 10 6 20 12 30s14 16 24 22 22 10 38 10c22 0 40-6 56-16s28-26 38-42 18-32 22-52 6-38 6-54c0-12 0-26-2-38s-8-24-14-34-14-18-24-24-24-10-40-10z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-at" + ], + "defaultCode": 61711, + "grid": 0 + }, + "properties": { + "id": 157, + "order": 158, + "ligatures": "", + "prevSize": 32, + "code": 61711, + "name": "ion-at" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 156 + }, + { + "icon": { + "paths": [ + "M826 664c4 4 6 8 6 12s-2 8-6 12l-42 44c-4 4-8 4-12 4s-8 0-12-4l-152-154-152 154c-4 4-8 4-12 4s-8 0-12-4l-42-44c-4-4-6-8-6-12s2-8 6-12l152-152-154-152c-6-6-6-18 0-24l44-44c4-4 8-4 12-4s8 0 12 4l152 152 152-152c4-4 8-4 12-4s8 0 12 4l44 44c6 6 6 18 0 24l-154 152zM998 188c18 18 26 40 26 66v512c0 54-40 98-92 98h-596c-26 0-48-6-68-18-18-10-32-22-46-40v0l-2-2-220-292 220-296c28-38 68-56 116-56h596c26 0 48 10 66 28zM960 766v-512c0-18-10-30-28-30h-596c-22 0-44 6-64 32l-192 256 192 256c16 20 34 32 64 32h596c18 0 28-16 28-34z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-backspace-outline" + ], + "defaultCode": 62398, + "grid": 0 + }, + "properties": { + "id": 158, + "order": 159, + "ligatures": "", + "prevSize": 32, + "code": 62398, + "name": "ion-backspace-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 157 + }, + { + "icon": { + "paths": [ + "M998 188c18 18 26 40 26 66v512c0 54-40 98-92 98h-596c-26 0-48-6-68-18-18-10-32-22-46-40v0l-2-2-220-292 220-296c28-38 68-56 116-56h596c26 0 48 10 66 28zM826 664l-152-152 154-152c6-6 6-18 0-24l-44-44c-4-4-8-4-12-4s-8 0-12 4l-152 152-152-152c-4-4-8-4-12-4s-8 0-12 4l-44 44c-6 6-6 18 0 24l154 152-152 152c-4 4-6 8-6 12s2 8 6 12l42 44c4 4 8 4 12 4s8 0 12-4l152-154 152 154c4 4 8 4 12 4s8 0 12-4l42-44c4-4 6-8 6-12s-2-8-6-12z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-backspace" + ], + "defaultCode": 62399, + "grid": 0 + }, + "properties": { + "id": 159, + "order": 160, + "ligatures": "", + "prevSize": 32, + "code": 62399, + "name": "ion-backspace" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 158 + }, + { + "icon": { + "paths": [ + "M832 320l64 640h-896l64-640h128v-8c0-136 112-248 248-248h16c136 0 248 112 248 248v8h128zM256 312v8h384v-8c0-102-82-184-184-184v0h-16c-102 0-184 82-184 184zM72 896h752l-50-512h-70v72c20 12 32 32 32 56 0 36-28 64-64 64s-64-28-64-64c0-24 12-44 32-56v-72h-384v72c20 12 32 32 32 56 0 36-28 64-64 64s-64-28-64-64c0-24 12-44 32-56v-72h-70z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-bag" + ], + "defaultCode": 61712, + "grid": 0 + }, + "properties": { + "id": 160, + "order": 161, + "ligatures": "", + "prevSize": 32, + "code": 61712, + "name": "ion-bag" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 159 + }, + { + "icon": { + "paths": [ + "M20 768c-12 0-20-8-20-20v-472c0-12 8-20 20-20h762c12 0 20 8 20 20v108h74c12 0 20 8 20 20v216c0 12-8 20-20 20h-74v108c0 12-8 20-20 20h-762zM450 320l-200 222h122l-54 162 200-222h-122z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-battery-charging" + ], + "defaultCode": 61713, + "grid": 0 + }, + "properties": { + "id": 161, + "order": 162, + "ligatures": "", + "prevSize": 32, + "code": 61713, + "name": "ion-battery-charging" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 160 + }, + { + "icon": { + "paths": [ + "M876 384c12 0 20 8 20 20v216c0 12-8 20-20 20h-74v108c0 12-8 20-20 20h-762c-12 0-20-8-20-20v-472c0-12 8-20 20-20h762c12 0 20 8 20 20v108h74zM832 576v-128h-94v-128h-674v384h674v-128h94z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-battery-empty" + ], + "defaultCode": 61714, + "grid": 0 + }, + "properties": { + "id": 162, + "order": 163, + "ligatures": "", + "prevSize": 32, + "code": 61714, + "name": "ion-battery-empty" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 161 + }, + { + "icon": { + "paths": [ + "M876 384c12 0 20 8 20 20v216c0 12-8 20-20 20h-74v108c0 12-8 20-20 20h-762c-12 0-20-8-20-20v-472c0-12 8-20 20-20h762c12 0 20 8 20 20v108h74z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-battery-full" + ], + "defaultCode": 61715, + "grid": 0 + }, + "properties": { + "id": 163, + "order": 164, + "ligatures": "", + "prevSize": 32, + "code": 61715, + "name": "ion-battery-full" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 162 + }, + { + "icon": { + "paths": [ + "M876 384c12 0 20 8 20 20v216c0 12-8 20-20 20h-74v108c0 12-8 20-20 20h-762c-12 0-20-8-20-20v-472c0-12 8-20 20-20h762c12 0 20 8 20 20v108h74zM832 576v-128h-94v-128h-162l64 384h98v-128h94z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-battery-half" + ], + "defaultCode": 61716, + "grid": 0 + }, + "properties": { + "id": 164, + "order": 165, + "ligatures": "", + "prevSize": 32, + "code": 61716, + "name": "ion-battery-half" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 163 + }, + { + "icon": { + "paths": [ + "M20 768c-12 0-20-8-20-20v-472c0-12 8-20 20-20h762c12 0 20 8 20 20v108h74c12 0 20 8 20 20v216c0 12-8 20-20 20h-74v108c0 12-8 20-20 20h-762zM738 320h-418l64 384h354v-128h94v-128h-94v-128z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-battery-low" + ], + "defaultCode": 61717, + "grid": 0 + }, + "properties": { + "id": 165, + "order": 166, + "ligatures": "", + "prevSize": 32, + "code": 61717, + "name": "ion-battery-low" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 164 + }, + { + "icon": { + "paths": [ + "M160 384h480v448c0 18-14 32-32 32h-416c-18 0-32-14-32-32v-448zM592 688v-96c0-8-8-16-16-16s-16 8-16 16v96c0 8 8 16 16 16s16-8 16-16zM576 544c8 0 16-8 16-16s-8-16-16-16-16 8-16 16 8 16 16 16zM762 64c6 0 6 4 6 6s-4 6-6 10-26 40-26 80v672c0 70-58 128-128 128h-416c-70 0-128-58-128-128v-614c0-64-4-66-64-74 0-24 22-80 130-80h632zM672 160c0-10 0-32 2-32h-546c-2 0-6 0-8 2 10 14 8 64 8 88v614c0 36 28 64 64 64h420c34 0 60-28 60-64v-672z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-beaker" + ], + "defaultCode": 62057, + "grid": 0 + }, + "properties": { + "id": 166, + "order": 167, + "ligatures": "", + "prevSize": 32, + "code": 62057, + "name": "ion-beaker" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 165 + }, + { + "icon": { + "paths": [ + "M768 320c70 0 128 58 128 128v192c0 70-58 128-128 128h-64v160c0 18-14 32-32 32h-512c-18 0-32-14-32-32v-446c-52 0-96-44-96-96v-110c-20-22-32-52-32-84 0-70 58-128 128-128 36 0 68 16 92 40 20-24 52-40 86-40 28 0 54 12 74 28 24-18 52-28 84-28 34 0 68 12 92 32 22-20 52-32 84-32 70 0 128 58 128 128 0 48-36 88-64 96v32h64zM592 608c8 0 16-6 16-16v0-96c0-8-8-16-16-16s-16 8-16 16v96c0 6 4 12 8 14 2 2 4 2 8 2zM606 456c2-4 2-8 2-12s-2-8-6-10-8-2-12-2-8 4-10 8-4 8-4 12 4 8 8 10 8 2 12 2 8-4 10-8zM640 320v-64h-40c-6 16-14 32-26 46-26 32-66 50-110 50-52 0-96-26-122-66-12 4-24 6-36 6-24 0-46-8-64-20-4-2-6-6-10-8-2 4-4 6-6 10-10 12-22 20-34 28v82h160c0-8 8-16 16-16s16 8 16 16h256v-64zM702 210c2-6 2-12 2-18 0-36-28-64-64-64-18 0-34 8-46 20-4 4-12 10-32 12h-16c-12-2-24-6-28-10-14-14-32-22-54-22-18 0-36 8-50 18l-14 14c0 2 0 2-2 4-6 6-14 10-22 10-10 0-16-6-22-12-2-4-4-6-6-10s-6-8-10-12-20-12-32-12c-20 0-36 18-50 32-14 16-54 16-68 0s-36-32-60-32c-36 0-64 28-64 64 0 4 2 10 2 14 4 18 14 34 30 42v138c0 18 14 32 32 32v-162c20 0 36-8 48-22 4-4 6-8 8-12 0 0 12-20 24-22s40-12 60 10c8 10 22 18 38 18 6 0 10-2 14-4 6-2 14-4 18-8v0c6-4 12-8 20-8 14 0 24 8 28 20 0 0 2 2 2 4 2 6 2 10 6 16 14 24 40 40 70 40 26 0 50-12 64-32 10-14 16-30 16-48s18-16 18-16h110c12 0 26 6 30 18zM832 640v-192c0-36-28-64-64-64h-64v320h64c36 0 64-28 64-64zM256 336c0-10 6-16 16-16s16 6 16 16-6 16-16 16-16-6-16-16zM576 336c0-10 6-16 16-16s16 6 16 16-6 16-16 16-16-6-16-16z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-beer" + ], + "defaultCode": 62058, + "grid": 0 + }, + "properties": { + "id": 167, + "order": 168, + "ligatures": "", + "prevSize": 32, + "code": 62058, + "name": "ion-beer" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 166 + }, + { + "icon": { + "paths": [ + "M24 288c32-32 36-26 38-24l136 130c4 4 20 20 20 6v-316c0-12 12-20 24-20 8 0 14 4 18 8v0s234 226 244 234 10 20 2 28l-168 162s-8 8-8 16 8 16 8 16l168 162c8 8 8 20-2 28s-244 234-244 234v0c-4 4-10 8-18 8-12 0-24-8-24-20v-316s-16 2-20 6v0 2l-136 128c-2 2-6 8-38-24s-24-34-22-36 180-172 180-172 8-6 8-16v0c0-10-8-16-8-16s-178-170-180-172-10-4 22-36zM304 240v158c0 16 16 2 20-2l60-60s6-10 6-14-2-10-6-14l-60-60c-4-4-20-22-20-8zM304 626v158s16-4 20-8l60-60c4-4 6-10 6-14s-2-10-6-14l-60-60c-4-4-20-18-20-2z" + ], + "width": 512, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-bluetooth" + ], + "defaultCode": 61718, + "grid": 0 + }, + "properties": { + "id": 168, + "order": 169, + "ligatures": "", + "prevSize": 32, + "code": 61718, + "name": "ion-bluetooth" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 167 + }, + { + "icon": { + "paths": [ + "M414 702l30 178c2 6 2 10 2 16 0 36-28 64-64 64s-64-28-64-64c0-4 0-10 2-14l30-184c4-14 16-26 32-26s30 14 32 30zM484 710v0 0 0zM658 780c18 16 20 50 0 70s-54 18-70 0c-2-2-4-6-6-8l-98-132c-6-10-4-22 4-30 10-10 20-10 32-2l128 94c4 2 6 6 10 8zM618 670v0 0 0zM742 644c18 2 26 14 26 38 0 18-20 28-36 24l-114-36c-6-4-12-10-10-18s8-14 16-12zM150 670v0 0 0zM150 670v0l-116 36c-16 4-34-6-34-24 0-24 6-36 24-38l120-4c8-2 14 4 16 12s-4 14-10 18v0zM248 678c10-8 22-8 32 2 8 8 10 20 4 30l-98 132c-2 2-4 6-6 8-20 20-50 20-70 0s-20-50 0-70c4-4 6-6 10-8zM576 256c0 64-18 116-100 172-74 52-188 92-220 212 0 0-116-48-96-192s248-212 224-384c48 0 192 70 192 192zM576 512c-32 100-88 128-160 128-30 0-64-18-86-52 24-30 56-52 94-74 18-10 40-20 58-32 42-28 76-62 94-98 10 30 10 96 0 128zM176 320c-12-8-18-28-16-54 4-44 68-78 64-138 28-4 62 6 84 48-10 22-30 42-56 68s-52 44-76 76z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-bonfire" + ], + "defaultCode": 62229, + "grid": 0 + }, + "properties": { + "id": 169, + "order": 170, + "ligatures": "", + "prevSize": 32, + "code": 62229, + "name": "ion-bonfire" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 168 + }, + { + "icon": { + "paths": [ + "M368 128c8 0 16 8 16 16v112h-384v-112c0-8 8-16 16-16h352zM0 896v-608h384v608l-192-192z" + ], + "width": 384, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-bookmark" + ], + "defaultCode": 62059, + "grid": 0 + }, + "properties": { + "id": 170, + "order": 171, + "ligatures": "", + "prevSize": 32, + "code": 62059, + "name": "ion-bookmark" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 169 + }, + { + "icon": { + "paths": [ + "M384 424c0 0 16-10 40-14 42-8 78-10 94 18 20 34 38 106 34 170-2 34-10 44-10 44s-30 20-94 14c-70-6-80-30-80-30s10-24 16-86 0-116 0-116zM304 570c-34 8-76 20-76 20s90-8 128-18c-8 42-20 68-20 68s-166 160-232 160c-56 0-104-136-104-288s52-288 104-288c70 0 212 114 256 194 0 0 6 32 4 64-20-10-48-20-88-28-56-12-84-6-84-6s36 8 114 34c30 10 44 16 58 20 0 6-2 14-2 20 0 10 0 20-2 30-10 4-30 12-56 18zM792 224c52 0 104 136 104 288s-48 288-104 288c-74 0-208-136-224-158 0 0 8-10 10-44v-18c32 14 140 26 140 26s-42-12-80-22c-26-8-50-16-60-20-2-22-4-46-8-66 34-22 138-68 138-68s-30 4-70 18c-28 10-58 22-74 28-6-20-14-36-20-48 0-2-2-8-2-8v-2c44-80 178-194 250-194z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-bowtie" + ], + "defaultCode": 62400, + "grid": 0 + }, + "properties": { + "id": 171, + "order": 172, + "ligatures": "", + "prevSize": 32, + "code": 62400, + "name": "ion-bowtie" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 170 + }, + { + "icon": { + "paths": [ + "M480 544v-16h416v352c0 8-8 16-16 16h-864c-8 0-16-8-16-16v-352h416v16h64zM880 288c8 0 16 8 16 16v192h-416v-16h-64v16h-416v-192c0-8 8-16 16-16h240v-62c2-56 44-98 102-98h180c60 0 100 42 102 98v62h240zM576 232v-2c0-20-18-38-38-38h-180c-20 0-38 18-38 38v58h256v-56z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-briefcase" + ], + "defaultCode": 62060, + "grid": 0 + }, + "properties": { + "id": 172, + "order": 173, + "ligatures": "", + "prevSize": 32, + "code": 62060, + "name": "ion-briefcase" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 171 + }, + { + "icon": { + "paths": [ + "M686 254c-12 32-32 62-56 86-48 48-114 74-182 74s-134-26-182-74c-24-24-44-54-56-86 58-78 144-126 238-126s180 48 238 126zM190 286c44 90 136 154 242 160v450c-80-4-154-44-208-108-14 12-20 18-26 30 16 18 14 44-2 62-18 20-48 22-68 4s-22-48-4-68l6-6s4-2 4-2c8-26 26-50 54-72-30-52-52-114-58-180-14 0-24 4-34 6-2 26-22 46-48 46s-48-22-48-48 22-48 48-48h6c8-4 16-10 24-12 14-4 28-8 50-8 2-46 12-90 26-130-12-8-22-14-30-22-12-10-22-26-28-38-2 0-6-2-8-4-24-12-30-42-18-66s42-30 66-18c22 12 30 40 20 62 4 6 6 14 8 16 4 4 10 6 16 10 4-6 6-10 10-16zM848 512c26 0 48 22 48 48s-22 48-48 48-46-20-48-46c-10-2-20-6-34-6-6 66-28 128-58 180 28 22 46 46 54 72 0 0 2 0 4 2l6 6c18 20 16 50-4 68s-50 16-68-4c-16-18-18-44-2-62-6-12-12-18-26-30-54 64-128 104-208 108v-450c106-6 198-70 242-160 4 6 6 10 10 16 6-4 12-6 16-10 2-2 4-10 8-16-10-22-2-50 20-62 24-12 54-6 66 18s6 54-18 66c-2 2-6 4-8 4-6 12-16 28-28 38-8 8-18 14-30 22 14 40 24 84 26 130 22 0 36 4 50 8 8 2 16 8 24 12h6z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-bug" + ], + "defaultCode": 62142, + "grid": 0 + }, + "properties": { + "id": 173, + "order": 174, + "ligatures": "", + "prevSize": 32, + "code": 62142, + "name": "ion-bug" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 172 + }, + { + "icon": { + "paths": [ + "M608 64c18 0 32 14 32 32v832c0 18-14 32-32 32h-576c-18 0-32-14-32-32v-832c0-18 14-32 32-32h576zM96 416v64h64v-64h-64zM96 544v64h64v-64h-64zM96 672v64h64v-64h-64zM288 864v-64h-192v64h192zM288 736v-64h-64v64h64zM288 608v-64h-64v64h64zM288 480v-64h-64v64h64zM416 864v-64h-64v64h64zM416 736v-64h-64v64h64zM416 608v-64h-64v64h64zM416 480v-64h-64v64h64zM544 864v-192h-64v192h64zM544 608v-64h-64v64h64zM544 480v-64h-64v64h64zM544 320v-160h-448v160h448z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-calculator" + ], + "defaultCode": 62061, + "grid": 0 + }, + "properties": { + "id": 174, + "order": 175, + "ligatures": "", + "prevSize": 32, + "code": 62061, + "name": "ion-calculator" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 173 + }, + { + "icon": { + "paths": [ + "M224 256c-36 0-64-28-64-64v-64c0-36 28-64 64-64s64 28 64 64v64c0 36-28 64-64 64zM672 256c-36 0-64-28-64-64v-64c0-36 28-64 64-64s64 28 64 64v64c0 36-28 64-64 64zM880 128c8 0 16 8 16 16v800c0 8-8 16-16 16h-864c-8 0-16-8-16-16v-800c0-8 8-16 16-16h112v82c0 44 48 78 96 78s96-34 96-78v-82h256v82c0 44 50 78 98 78s94-34 94-78v-82h112zM800 864v-512h-704v512h704z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-calendar" + ], + "defaultCode": 61719, + "grid": 0 + }, + "properties": { + "id": 175, + "order": 176, + "ligatures": "", + "prevSize": 32, + "code": 61719, + "name": "ion-calendar" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 174 + }, + { + "icon": { + "paths": [ + "M764 294c36 0 68 28 68 66v404c0 38-32 68-68 68h-696c-38 0-68-30-68-68v-404c0-38 30-66 68-66h138l78-80c12-14 30-22 50-22h168c18 0 34 8 46 20v0 0 0l82 82h134zM416 732c102 0 184-84 184-186s-82-186-184-186-184 84-184 186 82 186 184 186zM752 400c16 0 28-12 28-28s-12-28-28-28-28 12-28 28 12 28 28 28zM416 406c76 0 140 62 140 140s-64 140-140 140c-78 0-140-62-140-140s62-140 140-140z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-camera" + ], + "defaultCode": 61720, + "grid": 0 + }, + "properties": { + "id": 176, + "order": 177, + "ligatures": "", + "prevSize": 32, + "code": 61720, + "name": "ion-camera" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 175 + }, + { + "icon": { + "paths": [ + "M840 192c32 0 56 24 56 56v0 528c0 32-24 56-56 56h-784c-32 0-56-24-56-56v0 0-528c0-32 24-56 56-56h784zM90 256c-14 0-24 10-26 24v40h768v-40c-2-14-12-24-26-24h-716zM806 768c14 0 24-10 26-24v-232h-768v232c2 14 12 24 26 24h716zM128 640v-32h384v32h-384zM128 704v-32h192v32h-192zM640 704v-96h128v96h-128z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-card" + ], + "defaultCode": 61721, + "grid": 0 + }, + "properties": { + "id": 177, + "order": 178, + "ligatures": "", + "prevSize": 32, + "code": 61721, + "name": "ion-card" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 176 + }, + { + "icon": { + "paths": [ + "M0 192h1024v512h-1024v-512zM386 640c-40-46-66-116-66-192s26-146 66-192h-194c0 70-58 128-128 128v160c54 0 96 42 96 96h226zM596 522c6-8 8-18 8-30 0-6 0-10-2-16s-4-12-8-16-8-8-14-12-12-8-20-10c-2 0-8-2-14-4s-10 0-16-2v-62c4 2 10 4 14 6 8 6 12 14 14 26h40c0-10-4-18-8-26s-10-16-18-22-18-10-28-12c-4-2-10-4-14-4v-18h-36v18c-4 0-8 2-12 4-10 2-20 4-28 10s-14 12-18 20-8 18-8 28c0 6 0 10 2 16s4 10 8 14 10 10 16 14 14 8 24 10c6 2 12 0 16 2v70c-6-2-12-4-18-8s-10-8-12-14-4-12-4-18h-40c0 10 4 22 8 32 6 10 12 16 20 22s18 12 30 14c6 2 10 4 16 4v18h36v-18c6 0 12-2 18-4 10-2 20-4 28-10s14-14 20-22zM960 544v-160c-70 0-128-58-128-128h-194c40 46 66 116 66 192s-26 146-66 192h226c0-54 44-96 96-96zM128 448c0-42 22-64 64-64s64 22 64 64-22 64-64 64-64-22-64-64zM768 448c0-42 22-64 64-64s64 22 64 64-22 64-64 64-64-22-64-64zM546 470c4 2 8 4 12 8s6 10 6 18c0 4 0 8-2 12s-4 8-8 10-10 6-16 8c-2 0-4 2-8 2v-62c6 2 12 2 16 4zM472 382c2-4 6-6 10-8s8-4 12-4v52c-8-2-14-6-18-10s-8-8-8-16c0-6 2-10 4-14zM0 832v-64h1024v64h-1024z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-cash" + ], + "defaultCode": 62230, + "grid": 0 + }, + "properties": { + "id": 178, + "order": 179, + "ligatures": "", + "prevSize": 32, + "code": 62230, + "name": "ion-cash" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 177 + }, + { + "icon": { + "paths": [ + "M152 800c-84 0-152-62-152-142v-418c0-80 68-144 152-144h528c84 0 152 64 152 144v418c0 80-68 142-152 142h-8v128s-158-108-172-118-14-10-42-10h-306zM608 384c-36 0-64 28-64 64s28 64 64 64 64-28 64-64-28-64-64-64zM416 384c-36 0-64 28-64 64s28 64 64 64 64-28 64-64-28-64-64-64zM224 384c-36 0-64 28-64 64s28 64 64 64 64-28 64-64-28-64-64-64z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-chatbox-working" + ], + "defaultCode": 61722, + "grid": 0 + }, + "properties": { + "id": 179, + "order": 180, + "ligatures": "", + "prevSize": 32, + "code": 61722, + "name": "ion-chatbox-working" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 178 + }, + { + "icon": { + "paths": [ + "M152 800c-84 0-152-62-152-142v-418c0-80 68-144 152-144h528c84 0 152 64 152 144v418c0 80-68 142-152 142h-8v128s-158-108-172-118-14-10-42-10h-306z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-chatbox" + ], + "defaultCode": 61723, + "grid": 0 + }, + "properties": { + "id": 180, + "order": 181, + "ligatures": "", + "prevSize": 32, + "code": 61723, + "name": "ion-chatbox" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 179 + }, + { + "icon": { + "paths": [ + "M492 732l52 36c-8 42-58 64-104 64h-180c-16 0-22 4-26 6l-106 90v-96h-32c-52 0-96-32-96-82v-258c0-50 40-90 92-90h4v202c0 66 58 118 128 118h234c20 0 28 6 34 10zM706 96c70 0 126 54 126 120v336c0 66-56 120-126 120h-34v128l-150-120c-4-4-14-8-34-8h-202c-70 0-126-54-126-120v-336c0-66 42-120 112-120h434z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-chatboxes" + ], + "defaultCode": 61724, + "grid": 0 + }, + "properties": { + "id": 181, + "order": 182, + "ligatures": "", + "prevSize": 32, + "code": 61724, + "name": "ion-chatboxes" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 180 + }, + { + "icon": { + "paths": [ + "M416 898c-230 0-416-178-416-400s186-402 416-402 416 180 416 402c0 80-24 154-66 216-2 2-4 6-6 8v0c-4 8-8 20-8 30l44 176-168-62c-8-4-16-4-24-4s-14 2-22 4v0c-2 0-2 2-4 2-50 20-104 30-162 30zM608 448c-36 0-64 28-64 64s28 64 64 64 64-28 64-64-28-64-64-64zM416 448c-36 0-64 28-64 64s28 64 64 64 64-28 64-64-28-64-64-64zM224 448c-36 0-64 28-64 64s28 64 64 64 64-28 64-64-28-64-64-64z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-chatbubble-working" + ], + "defaultCode": 61725, + "grid": 0 + }, + "properties": { + "id": 182, + "order": 183, + "ligatures": "", + "prevSize": 32, + "code": 61725, + "name": "ion-chatbubble-working" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 181 + }, + { + "icon": { + "paths": [ + "M416 898c-230 0-416-178-416-400s186-402 416-402 416 180 416 402c0 80-24 154-66 216-2 2-4 6-6 8v0c-4 8-8 20-8 30l44 176-168-62c-8-4-16-4-24-4s-14 2-22 4v0c-2 0-2 2-4 2-50 20-104 30-162 30z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-chatbubble" + ], + "defaultCode": 61726, + "grid": 0 + }, + "properties": { + "id": 183, + "order": 184, + "ligatures": "", + "prevSize": 32, + "code": 61726, + "name": "ion-chatbubble" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 182 + }, + { + "icon": { + "paths": [ + "M50 782c-2-2 0-4-2-6-30-44-48-98-48-154 0-84 38-160 98-212-4 22-8 44-8 68 0 184 156 336 348 336 30 0 60-4 88-12-54 64-138 106-230 106-40 0-80-10-116-24h-2c-4-2-10-4-16-4s-12 2-18 4l-112 44 24-126c0-8-2-14-6-20v0zM484 96c192 0 348 152 348 336 0 66-22 128-56 180-2 2-2 4-4 6v0c-4 8-6 16-6 24l34 148-138-52c-6-2-12-4-20-4-6 0-12 2-18 4v0l-4 2c-16 6-32 10-48 14-28 8-58 12-88 12-192 0-346-150-346-334 0-24 2-48 6-70 32-152 172-266 340-266z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-chatbubbles" + ], + "defaultCode": 61727, + "grid": 0 + }, + "properties": { + "id": 184, + "order": 185, + "ligatures": "", + "prevSize": 32, + "code": 61727, + "name": "ion-chatbubbles" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 183 + }, + { + "icon": { + "paths": [ + "M448 64c248 0 448 200 448 448s-200 448-448 448-448-200-448-448 200-448 448-448zM678 362c2-2 2-4 2-6s0-6-2-8l-62-48c-2-2-6-2-8-2s-4 0-6 2l-222 286s-88-84-90-86-8-6-12-6-6 4-8 6l-52 52c-2 2-2 6-2 8s0 4 2 6l4 2s156 150 158 152 6 6 10 6 8-4 10-6z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-checkmark-circled" + ], + "defaultCode": 61728, + "grid": 0 + }, + "properties": { + "id": 185, + "order": 186, + "ligatures": "", + "prevSize": 32, + "code": 61728, + "name": "ion-checkmark-circled" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 184 + }, + { + "icon": { + "paths": [ + "M800 144c34 26 44 78 18 114l-414 604c-26 36-74 44-108 18s-274-294-274-294c-30-32-30-84 2-116s80-30 110 4l198 214 360-526c26-36 74-44 108-18z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-checkmark-round" + ], + "defaultCode": 61729, + "grid": 0 + }, + "properties": { + "id": 186, + "order": 187, + "ligatures": "", + "prevSize": 32, + "code": 61729, + "name": "ion-checkmark-round" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 185 + }, + { + "icon": { + "paths": [ + "M828 220c2 4 4 8 4 12s-2 8-4 12l-498 640c-4 4-10 12-18 12s-16-6-20-10-282-272-282-272l-6-6c-2-4-4-8-4-12s2-6 4-10l4-4c28-30 84-88 88-92s8-12 16-12 16 8 20 12 160 156 160 156l400-514c4-4 8-4 12-4s10 2 14 4z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-checkmark" + ], + "defaultCode": 61730, + "grid": 0 + }, + "properties": { + "id": 187, + "order": 188, + "ligatures": "", + "prevSize": 32, + "code": 61730, + "name": "ion-checkmark" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 186 + }, + { + "icon": { + "paths": [ + "M448 596v0 0l348-334c8-8 24-8 32 0l62 60c8 8 8 24 0 32l-426 408c-4 4-10 6-16 6s-12-2-16-6l-426-408c-8-8-8-24 0-32l62-60c8-8 24-8 32 0z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-chevron-down" + ], + "defaultCode": 61731, + "grid": 0 + }, + "properties": { + "id": 188, + "order": 189, + "ligatures": "", + "prevSize": 32, + "code": 61731, + "name": "ion-chevron-down" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 187 + }, + { + "icon": { + "paths": [ + "M172 512l334 348c8 8 8 24 0 32l-60 62c-8 8-24 8-32 0l-408-426c-4-4-6-10-6-16s2-12 6-16l408-426c8-8 24-6 32 2l60 60c8 8 8 24 0 32l-334 348z" + ], + "width": 512, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-chevron-left" + ], + "defaultCode": 61732, + "grid": 0 + }, + "properties": { + "id": 189, + "order": 190, + "ligatures": "", + "prevSize": 32, + "code": 61732, + "name": "ion-chevron-left" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 188 + }, + { + "icon": { + "paths": [ + "M340 512v0 0l-334-348c-8-8-8-24 0-32l60-60c8-8 24-10 32-2l408 426c4 4 6 10 6 16s-2 12-6 16l-408 426c-8 8-24 8-32 0l-60-62c-8-8-8-24 0-32z" + ], + "width": 512, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-chevron-right" + ], + "defaultCode": 61733, + "grid": 0 + }, + "properties": { + "id": 190, + "order": 191, + "ligatures": "", + "prevSize": 32, + "code": 61733, + "name": "ion-chevron-right" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 189 + }, + { + "icon": { + "paths": [ + "M448 428l-348 334c-8 8-24 8-32 0l-62-60c-8-8-8-24 0-32l426-408c4-4 10-6 16-6s12 2 16 6l426 408c8 8 8 24 0 32l-62 60c-8 8-24 8-32 0l-348-334z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-chevron-up" + ], + "defaultCode": 61734, + "grid": 0 + }, + "properties": { + "id": 191, + "order": 192, + "ligatures": "", + "prevSize": 32, + "code": 61734, + "name": "ion-chevron-up" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 190 + }, + { + "icon": { + "paths": [ + "M160 320c4-40 20-70 56-80l2-2c24-6 42-14 42-40v-42c0-52 42-92 92-92s92 40 92 92v42c0 26 18 36 42 42h4c36 10 50 40 54 80h-384zM352 128c-16 0-26 12-26 28s10 28 26 28 28-12 28-28-12-28-28-28zM650 128c30 0 54 24 54 56v720c0 32-24 56-54 56h-594c-30 0-56-24-56-56v-720c0-32 26-56 56-56h146v26c0 22-18 38-38 38h-74c-14 0-24 12-24 26v654c0 12 10 24 22 24h530c12 0 22-12 22-24v-654c0-14-10-26-24-26h-74c-20 0-40-16-40-38v-26h148zM128 448v-64h224v64h-224zM128 832v-64h320v64h-320zM128 704v-64h258v64h-258zM128 576v-64h416v64h-416z" + ], + "width": 704, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-clipboard" + ], + "defaultCode": 61735, + "grid": 0 + }, + "properties": { + "id": 192, + "order": 193, + "ligatures": "", + "prevSize": 32, + "code": 61735, + "name": "ion-clipboard" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 191 + }, + { + "icon": { + "paths": [ + "M448 64c248 0 448 200 448 448s-200 448-448 448-448-200-448-448 200-448 448-448zM720 784c20-20 38-42 52-66l-54-32 16-28 54 32c26-50 42-104 44-162h-64v-32h64c-2-58-18-112-44-162l-54 32-16-28 54-32c-14-24-32-46-52-66s-42-38-66-52l-32 54-28-16 32-54c-50-26-104-42-162-44v64h-32v-64c-58 2-112 18-162 44l32 54-28 16-32-54c-24 14-46 32-66 52s-38 42-52 66l54 32-16 28-54-32c-26 50-42 104-44 162h64v32h-64c2 58 18 112 44 162l54-32 16 28-54 32c14 24 32 46 52 66s42 38 66 52l32-54 28 16-32 54c50 26 104 42 162 44v-64h32v64c58-2 112-18 162-44l-32-54 28-16 32 54c24-14 46-32 66-52zM736 482v64h-234c-12 18-32 30-54 30-36 0-64-28-64-64 0-24 12-44 32-56v-136h64v136c10 6 18 16 24 26h232z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-clock" + ], + "defaultCode": 62062, + "grid": 0 + }, + "properties": { + "id": 193, + "order": 194, + "ligatures": "", + "prevSize": 32, + "code": 62062, + "name": "ion-clock" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 192 + }, + { + "icon": { + "paths": [ + "M448 66c248 0 448 200 448 448s-200 448-448 448-448-200-448-448 200-448 448-448zM664 664l-150-150 152-150c6-6 6-18 0-24l-44-42c-4-4-8-6-12-6s-6 2-10 6l-152 148-152-148c-4-4-6-6-10-6s-8 2-12 6l-42 42c-6 6-6 18 0 24l152 150-152 152c-4 2-4 6-4 10s0 8 4 12l42 44c4 4 8 4 12 4s8 0 12-4l150-152 152 150c4 4 6 6 10 6s8-2 12-6l42-42c4-2 6-8 6-12s-2-8-6-12z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-close-circled" + ], + "defaultCode": 61736, + "grid": 0 + }, + "properties": { + "id": 194, + "order": 195, + "ligatures": "", + "prevSize": 32, + "code": 61736, + "name": "ion-close-circled" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 193 + }, + { + "icon": { + "paths": [ + "M748 774c28 28 28 74 0 102s-74 28-102 0l-262-262-262 262c-28 28-72 28-100 0s-28-74 0-102l260-262-260-262c-28-28-28-74 0-102s72-28 100 0l262 262 262-262c28-28 74-28 102 0s28 74 0 102l-262 262z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-close-round" + ], + "defaultCode": 61737, + "grid": 0 + }, + "properties": { + "id": 195, + "order": 196, + "ligatures": "", + "prevSize": 32, + "code": 61737, + "name": "ion-close-round" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 194 + }, + { + "icon": { + "paths": [ + "M760 774c6 6 8 12 8 20s-2 14-8 20l-76 74c-6 6-10 8-18 8s-14-2-20-8l-262-262-262 262c-6 6-10 8-18 8s-14-2-20-8l-76-74c-6-6-8-12-8-20s2-14 8-20l264-262-264-260c-10-10-10-30 0-40l74-76c6-4 12-8 20-8s14 2 20 8l262 260 262-260c6-4 12-8 20-8s14 2 20 8l74 76c10 10 10 28 0 38l-264 260z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-close" + ], + "defaultCode": 61738, + "grid": 0 + }, + "properties": { + "id": 196, + "order": 197, + "ligatures": "", + "prevSize": 32, + "code": 61738, + "name": "ion-close" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 195 + }, + { + "icon": { + "paths": [ + "M0 128h1024v768h-1024v-768zM928 512c0-54 0-88-8-160s-46-112-118-120-182-8-276-8h-28c-94 0-204 0-276 8s-110 48-118 120-8 106-8 160 4 94 8 160 38 112 118 120 192 8 290 8 210 0 290-8 114-54 118-120 8-106 8-160zM744 568v-8h106c0 54-14 96-38 124s-64 42-122 42c-28 0-52-4-72-10s-36-18-50-34-24-38-30-66-10-60-10-102 6-78 14-106 18-50 34-66 34-28 54-34 44-10 68-10c50 0 88 14 114 42s38 74 38 124h-104v-2c0-40-24-66-54-66s-50 22-56 60c0 0-4 22-4 58s4 56 4 56c2 34 24 58 54 58s54-20 54-58v-2zM390 568v-8h106c0 54-14 96-38 124s-64 42-122 42c-28 0-52-4-72-10s-36-18-50-34-24-38-30-66-10-60-10-102 6-78 14-106 18-50 34-66 34-28 54-34 44-10 68-10c50 0 88 14 114 42s38 74 38 124h-104v-2c0-40-24-66-54-66s-50 22-56 60c0 0-4 22-4 58s4 56 4 56c2 34 24 58 54 58s54-20 54-58v-2z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-closed-captioning" + ], + "defaultCode": 62231, + "grid": 0 + }, + "properties": { + "id": 197, + "order": 198, + "ligatures": "", + "prevSize": 32, + "code": 62231, + "name": "ion-closed-captioning" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 196 + }, + { + "icon": { + "paths": [ + "M732 466c90 0 164 76 164 168s-74 166-164 166v0h-552c-98 0-180-82-180-182 0-80 52-148 122-172 10-58 58-102 118-102 20 0 36 6 52 14 38-80 118-134 210-134 128 0 230 106 230 236v6z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-cloud" + ], + "defaultCode": 61739, + "grid": 0 + }, + "properties": { + "id": 198, + "order": 199, + "ligatures": "", + "prevSize": 32, + "code": 61739, + "name": "ion-cloud" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 197 + }, + { + "icon": { + "paths": [ + "M598 568l-128 128-4 2-2 2-4 2h-4c-2 0-6 2-8 2s-6-2-8-2h-4l-4-2-2-2c-2-2-4-2-6-4v0l-126-126c-12-12-12-34 0-46s36-12 48 0l70 68v-236c0-18 14-34 32-34s32 16 32 34v236l70-68c12-12 36-12 48 0s12 34 0 46zM272 784c-12 0-24-4-34-14l-224-224c-18-18-18-50 0-68l224-224c18-18 50-18 68 0s18 50 0 68l-190 190 190 190c18 18 18 50 0 68-10 10-22 14-34 14zM624 784c-12 0-24-4-34-14-18-18-18-50 0-68l190-190-190-190c-18-18-18-50 0-68s50-18 68 0l224 224c18 18 18 50 0 68l-224 224c-10 10-22 14-34 14z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-code-download" + ], + "defaultCode": 62063, + "grid": 0 + }, + "properties": { + "id": 199, + "order": 200, + "ligatures": "", + "prevSize": 32, + "code": 62063, + "name": "ion-code-download" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 198 + }, + { + "icon": { + "paths": [ + "M256 512c0-32 16-48 48-48s48 16 48 48-16 48-48 48-48-16-48-48zM400 512c0-32 16-48 48-48s48 16 48 48-16 48-48 48-48-16-48-48zM544 512c0-32 16-48 48-48s48 16 48 48-16 48-48 48-48-16-48-48zM272 784c-14 0-24-4-34-14l-224-224c-10-10-14-20-14-34s4-24 14-34l224-224c10-10 20-14 34-14s24 4 34 14 14 20 14 34-4 24-14 34l-190 190 190 190c10 10 14 20 14 34s-4 24-14 34-20 14-34 14zM624 784c-14 0-24-4-34-14s-14-20-14-34 4-24 14-34l190-190-190-190c-10-10-14-20-14-34s4-24 14-34 20-14 34-14 24 4 34 14l224 224c10 10 14 20 14 34s-4 24-14 34l-224 224c-10 10-20 14-34 14z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-code-working" + ], + "defaultCode": 62064, + "grid": 0 + }, + "properties": { + "id": 200, + "order": 201, + "ligatures": "", + "prevSize": 32, + "code": 62064, + "name": "ion-code-working" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 199 + }, + { + "icon": { + "paths": [ + "M272 784c-12 0-24-4-34-14l-224-224c-18-18-18-50 0-68l224-224c18-18 50-18 68 0s18 50 0 68l-190 190 190 190c18 18 18 50 0 68-10 10-22 14-34 14zM624 784c-12 0-24-4-34-14-18-18-18-50 0-68l190-190-190-190c-18-18-18-50 0-68s50-18 68 0l224 224c18 18 18 50 0 68l-224 224c-10 10-22 14-34 14z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-code" + ], + "defaultCode": 62065, + "grid": 0 + }, + "properties": { + "id": 201, + "order": 202, + "ligatures": "", + "prevSize": 32, + "code": 62065, + "name": "ion-code" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 200 + }, + { + "icon": { + "paths": [ + "M638 514c74 14 130 80 130 158 0 40-16 78-42 108-30 34-74 52-122 52-16 0-34-2-50-6-12-2-20-6-30-10-22 30-46 50-64 66v0c-10 10-24 14-38 14h-204c-14 0-28-4-38-14v0c-34-30-82-72-124-172s-56-182-56-222 6-40 32-40h202c-10-34-74-38-74-92 0-34 30-64 56-74-4 16-6 28-6 42 0 38 78 60 78 106 0 6 0 12-2 18h112c2-10 4-20 4-28 0-72-112-72-112-168 0-56 42-110 94-124-8 28-18 46-18 70 0 64 114 100 114 176 0 26-10 50-24 74h152c26 0 32 0 32 40 0 8 0 16-2 26zM604 768c66 0 100-50 100-96s-34-86-78-94c-8 38-22 84-42 132-8 18-16 34-24 50 12 6 26 8 44 8z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-coffee" + ], + "defaultCode": 62066, + "grid": 0 + }, + "properties": { + "id": 202, + "order": 203, + "ligatures": "", + "prevSize": 32, + "code": 62066, + "name": "ion-coffee" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 201 + }, + { + "icon": { + "paths": [ + "M448 64c248 0 448 200 448 448s-200 448-448 448-448-200-448-448c0-78 20-152 54-216-32-24-54-60-54-104 0-70 58-128 128-128 44 0 80 22 104 54 64-34 138-54 216-54zM64 192c0 20 10 40 26 52 26-34 56-64 90-90-12-16-32-26-52-26-36 0-64 28-64 64zM720 784c72-72 112-170 112-272s-40-200-112-272-170-112-272-112-200 40-272 112-112 170-112 272 40 200 112 272 170 112 272 112 200-40 272-112zM640 256c0 0-108 260-144 304s-240 208-240 208 108-264 144-304 240-208 240-208z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-compass" + ], + "defaultCode": 62067, + "grid": 0 + }, + "properties": { + "id": 203, + "order": 204, + "ligatures": "", + "prevSize": 32, + "code": 62067, + "name": "ion-compass" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 202 + }, + { + "icon": { + "paths": [ + "M758 200c14 14 14 36 0 50l-64 62-110-110 62-64c14-14 36-14 50 0zM564 220l110 110-354 346-128 28 28-128zM640 512l64-64v402c0 26-20 46-46 46h-612c-26 0-46-20-46-46v-612c0-26 20-46 46-46h402l-64 64h-298c-12 0-22 10-22 20v536s8 20 20 20h538s18-10 18-20v-300z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-compose" + ], + "defaultCode": 61740, + "grid": 0 + }, + "properties": { + "id": 204, + "order": 205, + "ligatures": "", + "prevSize": 32, + "code": 61740, + "name": "ion-compose" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 203 + }, + { + "icon": { + "paths": [ + "M0 832v-128h128v128h-128zM192 832v-256h128v256h-128zM384 832v-448h128v448h-128zM576 832v-640h128v640h-128z" + ], + "width": 704, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-connection-bars" + ], + "defaultCode": 62068, + "grid": 0 + }, + "properties": { + "id": 205, + "order": 206, + "ligatures": "", + "prevSize": 32, + "code": 62068, + "name": "ion-connection-bars" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 204 + }, + { + "icon": { + "paths": [ + "M448 64c248 0 448 200 448 448s-200 448-448 448-448-200-448-448 200-448 448-448zM720 784c72-72 112-170 112-272s-40-200-112-272-170-112-272-112v768c102 0 200-40 272-112z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-contrast" + ], + "defaultCode": 62069, + "grid": 0 + }, + "properties": { + "id": 206, + "order": 207, + "ligatures": "", + "prevSize": 32, + "code": 62069, + "name": "ion-contrast" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 205 + }, + { + "icon": { + "paths": [ + "M640 960v-96h128v96h-128zM768 704h128v128h-768v-512h-128v-128h128v-128h128v640h384v-384h-352v-128h480v512z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-crop" + ], + "defaultCode": 62401, + "grid": 0 + }, + "properties": { + "id": 207, + "order": 208, + "ligatures": "", + "prevSize": 32, + "code": 62401, + "name": "ion-crop" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 206 + }, + { + "icon": { + "paths": [ + "M870 336c14 0 26 12 26 24v366c0 18-12 34-28 44v2l-350 184v2c-4 2-8 2-12 2-14 0-26-12-26-24v-370c0-18 10-34 26-44v0l6-4 348-180c4-2 6-2 10-2zM844 238c0 0 16 6 16 18 0 14-16 22-16 22l-370 196c-8 4-16 6-26 6s-18-2-26-6l-4-2-366-192s-16-10-16-24c0-12 16-18 16-18l362-164s22-10 34-10 34 10 34 10zM390 522c16 10 26 26 26 44v370c0 12-12 24-26 24-4 0-8-2-12-4v0l-350-184v-2c-16-10-28-26-28-44v-366c0-12 12-24 26-24 4 0 8 0 10 2l4 2 342 178z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-cube" + ], + "defaultCode": 62232, + "grid": 0 + }, + "properties": { + "id": 208, + "order": 209, + "ligatures": "", + "prevSize": 32, + "code": 62232, + "name": "ion-cube" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 207 + }, + { + "icon": { + "paths": [ + "M448 318c108 0 194 86 194 194s-86 194-194 194-194-86-194-194 86-194 194-194zM448 600c48 0 88-40 88-88s-40-88-88-88-88 40-88 88 40 88 88 88zM448 64c248 0 448 200 448 448s-200 448-448 448-448-200-448-448 200-448 448-448zM448 758c136 0 246-110 246-246s-110-246-246-246-246 110-246 246 110 246 246 246z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-disc" + ], + "defaultCode": 61741, + "grid": 0 + }, + "properties": { + "id": 209, + "order": 210, + "ligatures": "", + "prevSize": 32, + "code": 61741, + "name": "ion-disc" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 208 + }, + { + "icon": { + "paths": [ + "M572 338c2 6 4 12 4 20v490c0 26-20 48-44 48h-486c-24 0-46-22-46-48v-672c0-26 22-48 46-48h320c6 0 12 0 18 4 4 2 10 6 14 10l168 184c4 4 4 8 6 12zM96 358v20c0 2 2 6 6 6h142c4 0 6-4 6-6v-20c0-4-2-6-6-6h-142c-4 0-6 2-6 6zM96 614v20c0 2 2 6 6 6h246c4 0 4-4 4-6v-20c0-4 0-6-4-6h-246c-4 0-6 2-6 6zM416 762v-20c0-4 0-6-4-6h-310c-4 0-6 2-6 6v20c0 2 2 6 6 6h310c4 0 4-4 4-6zM480 506v-20c0-4 0-6-4-6h-374c-4 0-6 2-6 6v20c0 2 2 6 6 6h374c4 0 4-4 4-6zM386 356h120l-142-156v132c0 12 10 24 22 24z" + ], + "width": 576, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-document-text" + ], + "defaultCode": 61742, + "grid": 0 + }, + "properties": { + "id": 210, + "order": 211, + "ligatures": "", + "prevSize": 32, + "code": 61742, + "name": "ion-document-text" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 209 + }, + { + "icon": { + "paths": [ + "M574 338c2 6 2 10 2 18v488c0 26-18 52-42 52h-486c-24 0-48-26-48-52v-670c0-26 24-46 48-46h320c6 0 12 0 18 4 4 2 10 4 14 8l166 184c4 4 6 8 8 14zM386 222v126h116zM64 832h448v-420h-134c-30 0-56-26-56-56v-164h-258v640z" + ], + "width": 576, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-document" + ], + "defaultCode": 61743, + "grid": 0 + }, + "properties": { + "id": 211, + "order": 212, + "ligatures": "", + "prevSize": 32, + "code": 61743, + "name": "ion-document" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 210 + }, + { + "icon": { + "paths": [ + "M0 352v-64h1024v64h-1024zM0 544v-64h1024v64h-1024zM0 736v-64h1024v64h-1024z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-drag" + ], + "defaultCode": 61744, + "grid": 0 + }, + "properties": { + "id": 212, + "order": 213, + "ligatures": "", + "prevSize": 32, + "code": 61744, + "name": "ion-drag" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 211 + }, + { + "icon": { + "paths": [ + "M650 252c4 8 14 24 6 30-6 4-20 4-26-10s0-22-10-18-14-6-12-8c2-4 6-6 10-8 0-4-8-16 4-14 8 2 24 20 28 28zM688 342v0 0zM806 394c0 0-4 0 0 0v0zM448 64c248 0 448 200 448 448s-200 448-448 448-448-200-448-448 200-448 448-448zM282 858l16 8c6 2 12 4 20 6 28 10 56 16 86 20 56 6 112 2 166-16 30-10 60-22 86-40 12-8 12-32 20-48 16-32-4-66 24-94 24-28 8-38 8-68 0-20 16-36 8-58-2-8-14 6-18-2-10-14-42-2-56-4-26-4-48-28-66-46-10-10 0-40 2-52 8-30 0-66 38-76 10-2 10-18 20-22 10-2 20-6 30-8 18-2 34 4 52 4 20 0 28 10 44 22 14 12 26 6 44 10 14 0 0-10-4-16-6-4-12-4-16-4-32-8-46-44-72-60-12-6-18-4-22 0-2 2 2 24 2 24-2 6-20 8-26 10-18 4-58-34-30-44 8-2 54-10 48-30-6-12 4-26-10-28-16-2-14-14-30-16-10-2-10-22-10-28 0-18 4-12 18-14-34-22-74-38-114-48-2 6-10 24-16 24-10 2-12 0-18 6-18 20-32 56-50 14-8-22 10-38 4-56h-18c12 24-10 36-16 38-16 0-20-10-34-8-8 2-14-8-22-4s-26 16-28 24c-6 24 12 26 28 12 12-12 34-24 50-12 12 10 10 18 10 28s-2 36-18 32c-8-2-14-12-22-6-16 14-36 12-58 18-20 4-32 12-50 18-16 6-22 8-24 24 0 4 0 28-6 30-10 4-16-44-44-40-24 2-60 26-50 56 4 10 56 6 20 28-4 2 4 34 4 40 2 16 26 36 42 20 12-12 12-10 28-4 30 16 66 30 90 54 12 12 18 48 34 56 18 10 38 10 52 28 12 14-4 38-16 46-8 4-24 48-32 58-4 8-24 12-32 14-6 0-14 18-18 22-14 14-16 26-34 38-36 24-44 46-36 88 4 16 10 26 22 32zM200 804l4 4c14 12 30 22 46 32-42-42-46-98-42-156l6-48c2-6-8-14-8-22 0-20 0-10-16-26-8-8-20-22-24-34-14-32 2-60 20-86 18-28-14-40-20-64-2-12-14-12-12-24 2-14-8-10-18-18-24-16-2-40-14-52-86 140-72 324 32 448 2 2 0 2 2 4h2c6 8 12 16 18 22s14 12 20 18z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-earth" + ], + "defaultCode": 62070, + "grid": 0 + }, + "properties": { + "id": 213, + "order": 214, + "ligatures": "", + "prevSize": 32, + "code": 62070, + "name": "ion-earth" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 212 + }, + { + "icon": { + "paths": [ + "M96 672v-384h704v384h-704zM864 192c18 0 32 14 32 32v512c0 18-14 32-32 32h-832c-18 0-32-14-32-32v-512c0-18 14-32 32-32h832zM832 704v-448h-768v448h768zM96 960l58-160h62l-56 160h-64zM478 64l34 96h-128l34-96h60zM680 800h62l58 160h-64zM416 896v-96h64v96h-64z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-easel" + ], + "defaultCode": 62402, + "grid": 0 + }, + "properties": { + "id": 214, + "order": 215, + "ligatures": "", + "prevSize": 32, + "code": 62402, + "name": "ion-easel" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 213 + }, + { + "icon": { + "paths": [ + "M762 378l-500 502-182-182 502-500zM880 176c24 24 22 64-4 90l-90 90-182-182 90-90c26-26 66-28 90-4zM64 726l170 170-234 64z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-edit" + ], + "defaultCode": 62143, + "grid": 0 + }, + "properties": { + "id": 215, + "order": 216, + "ligatures": "", + "prevSize": 32, + "code": 62143, + "name": "ion-edit" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 214 + }, + { + "icon": { + "paths": [ + "M320 64c128 0 320 266 320 514s-128 382-320 382-320-134-320-382 192-514 320-514z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-egg" + ], + "defaultCode": 62071, + "grid": 0 + }, + "properties": { + "id": 216, + "order": 217, + "ligatures": "", + "prevSize": 32, + "code": 62071, + "name": "ion-egg" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 215 + }, + { + "icon": { + "paths": [ + "M606 640h-572c-20 0-34-14-34-32 0-6 2-10 6-16l276-382c10-10 22-18 38-18s28 8 38 18l276 380c4 6 6 12 6 18 0 18-14 32-34 32v0zM616 704c14 0 24 10 24 24v80c0 14-10 24-24 24h-592c-14 0-24-10-24-24v-80c0-14 10-24 24-24h592z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-eject" + ], + "defaultCode": 61745, + "grid": 0 + }, + "properties": { + "id": 217, + "order": 218, + "ligatures": "", + "prevSize": 32, + "code": 61745, + "name": "ion-eject" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 216 + }, + { + "icon": { + "paths": [ + "M704 320c0-86 42-128 128-128s128 42 128 128-42 128-128 128-128-42-128-128zM418 320h254c0 34 10 66 30 94-12 6-28 16-44 24s-32 16-46 24-28 16-44 24-30 16-42 22-22 12-32 18-18 10-24 14-8 6-10 6c-12 6-26 8-42 8s-30-2-42-8c-2-2-30-16-84-46s-108-58-162-88-86-46-92-50c-14-8-24-16-26-22-2-8-2-12 2-16s12-4 22-4h382zM554 546c36-22 90-60 166-112 32 30 68 46 112 46v310c0 4-2 8-4 14s-6 10-10 14-8 8-14 10-12 4-16 4h-740c-10 0-22-4-32-14s-16-18-16-28v-410c0-12 6-16 18-10 4 2 22 14 52 34s64 44 106 72 78 52 106 70l-166 186c-4 4-4 8-2 10 4 2 8 2 12-2l196-166c32 20 50 32 54 34 12 6 26 8 42 8s30-2 42-8c4-2 22-14 54-34l196 166c4 4 10 4 12 2s0-6-4-10z" + ], + "width": 960, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-email-unread" + ], + "defaultCode": 62403, + "grid": 0 + }, + "properties": { + "id": 218, + "order": 219, + "ligatures": "", + "prevSize": 32, + "code": 62403, + "name": "ion-email-unread" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 217 + }, + { + "icon": { + "paths": [ + "M38 298c-8-4-22-14-26-22-6-16 2-20 24-20h764c22 0 30 4 24 20-4 8-18 18-26 22-22 12-326 178-338 184s-24 8-42 8-30-2-42-8-316-172-338-184zM816 306c18-8 16 2 16 10v410c0 18-24 42-44 42h-740c-20 0-48-24-48-42v-410s0-18 18-10c16 8 166 112 264 176l-166 186c-4 4-4 8-2 10s8 2 12-2l196-166c30 20 50 32 54 34 16 8 28 8 42 8s26 0 42-8c4-2 24-14 54-34l196 166c4 4 10 4 12 2s0-6-4-10l-164-186c98-64 246-168 262-176z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-email" + ], + "defaultCode": 61746, + "grid": 0 + }, + "properties": { + "id": 219, + "order": 220, + "ligatures": "", + "prevSize": 32, + "code": 61746, + "name": "ion-email" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 218 + }, + { + "icon": { + "paths": [ + "M764 854c4 8 6 20 0 28s-16 14-26 14h-710c-10 0-18-6-24-14s-4-20 0-28l236-398v-300c0-16 12-28 28-28s30 12 30 28v160c8-6 20-10 32-10 30 0 54 24 54 54s-24 52-54 52c-12 0-24-4-32-10v62c0 4-2 8-4 12l-70 118h144c-30-12-52-40-52-74 0-46 38-84 86-84 30 0 54 16 70 38-2-4-2-6-2-10v-308c0-16 12-28 28-28s30 12 30 28v300zM436 594h106l-62-108c4 10 6 22 6 34 0 34-20 62-50 74zM402 258c-24 0-44-18-44-42s20-42 44-42 44 18 44 42-20 42-44 42z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-erlenmeyer-flask-bubbles" + ], + "defaultCode": 62404, + "grid": 0 + }, + "properties": { + "id": 220, + "order": 221, + "ligatures": "", + "prevSize": 32, + "code": 62404, + "name": "ion-erlenmeyer-flask-bubbles" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 219 + }, + { + "icon": { + "paths": [ + "M750 792c12 18 18 40 18 64 0 56-32 104-126 104h-516c-94 0-126-48-126-104 0-24 6-46 18-64l98-146 98-154c26-40 42-88 42-140v-184s-28-68-32-86c-4-16 2-18 34-18h252c32 0 36 2 32 18-4 18-30 44-30 84v186c0 52 12 100 38 140zM690 882c6-6 14-16 14-28 0-10-4-20-8-28l-202-300c-32-52-46-112-46-174v-224h-128v224c0 64-18 124-50 174l-198 300c-4 8-8 18-8 28 0 12 6 22 12 28 8 8 24 14 50 14h516c26 0 40-6 48-14zM650 822c2 4 6 12 6 16 0 14-12 30-28 30h-488c-14 0-28-12-28-28 0-6 2-12 6-16l162-248h206l164 248v-2zM476 684c4 2 8 4 12 4s6 0 10-4c2-4 6-8 6-12s-2-8-6-12c-2-4-6-4-10-4s-8 0-12 4c-2 4-4 8-4 12s0 8 4 12zM570 802c8-4 8-14 4-22l-46-72c-2-4-8-8-14-8-4 0-6 0-8 2-8 4-8 14-4 22l46 72c2 4 10 8 14 8 2 0 6 0 8-2z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-erlenmeyer-flask" + ], + "defaultCode": 62405, + "grid": 0 + }, + "properties": { + "id": 221, + "order": 222, + "ligatures": "", + "prevSize": 32, + "code": 62405, + "name": "ion-erlenmeyer-flask" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 220 + }, + { + "icon": { + "paths": [ + "M688 316c82 54 152 132 208 200-102 108-248 270-448 270-72 0-130-16-184-44l-154 154-46-46 142-142c-72-50-136-122-206-196 156-170 284-274 448-274 68 0 128 18 184 46l154-156 46 46zM268 512c0 38 12 72 32 102l54-54c-8-14-10-30-10-48 0-58 46-106 104-106h16c-10 12-16 26-16 42 0 6 0 10 2 16l102-100c-30-22-66-34-104-34-98 0-180 82-180 182zM448 694c98 0 180-82 180-182 0-38-12-74-32-104l-100 102c6 2 10 2 16 2 16 0 28-6 40-14v14c0 58-46 106-104 106-18 0-34-4-48-12l-56 54c30 22 66 34 104 34z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-eye-disabled" + ], + "defaultCode": 62214, + "grid": 0 + }, + "properties": { + "id": 222, + "order": 223, + "ligatures": "", + "prevSize": 32, + "code": 62214, + "name": "ion-eye-disabled" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 221 + }, + { + "icon": { + "paths": [ + "M448 256c198 0 344 140 448 258-102 100-248 254-448 254s-314-120-448-256c156-158 284-256 448-256zM448 694c98 0 180-82 180-182s-82-182-180-182-180 82-180 182 82 182 180 182zM448 448c0 36 28 64 64 64 16 0 28-6 40-14v14c0 58-46 106-104 106s-104-48-104-106 46-106 104-106h16c-10 12-16 26-16 42z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-eye" + ], + "defaultCode": 61747, + "grid": 0 + }, + "properties": { + "id": 223, + "order": 224, + "ligatures": "", + "prevSize": 32, + "code": 61747, + "name": "ion-eye" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 222 + }, + { + "icon": { + "paths": [ + "M320 568v136h128v128h-128v128h-128v-128h-128v-128h128v-136c-110-28-192-128-192-248 0-142 114-256 256-256s256 114 256 256c0 120-82 220-192 248zM256 480c88 0 160-72 160-160s-72-160-160-160-160 72-160 160 72 160 160 160z" + ], + "width": 512, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-female" + ], + "defaultCode": 62072, + "grid": 0 + }, + "properties": { + "id": 224, + "order": 225, + "ligatures": "", + "prevSize": 32, + "code": 62072, + "name": "ion-female" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 223 + }, + { + "icon": { + "paths": [ + "M634 258c24 0 38 0 38 40v56h-576v-56c0-40 16-40 40-40h498zM538 192c26 0 38 2 38 38h-384c0-36 14-38 40-38h306zM736 340c26 16 34 34 30 82l-34 368c-8 42-32 42-48 42h-600c-16 0-40 0-48-42l-34-370c-6-52 2-62 30-80l30-20v64h642v-64z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-filing" + ], + "defaultCode": 61748, + "grid": 0 + }, + "properties": { + "id": 225, + "order": 226, + "ligatures": "", + "prevSize": 32, + "code": 61748, + "name": "ion-filing" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 224 + }, + { + "icon": { + "paths": [ + "M800 416c18 0 32 14 32 30v420c0 16-14 30-32 30h-768c-18 0-32-14-32-30v-420c0-16 12-28 26-30-4-4-6-8-8-14l-18-90c-4-16 10-32 26-36l740-148c16-4 32 8 36 24l18 92c4 16-8 32-24 36l-684 136h688zM514 804l-40-116 102-72h-124l-40-116-38 116h-126l102 72-38 116 100-72z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-film-marker" + ], + "defaultCode": 61749, + "grid": 0 + }, + "properties": { + "id": 226, + "order": 227, + "ligatures": "", + "prevSize": 32, + "code": 61749, + "name": "ion-film-marker" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 225 + }, + { + "icon": { + "paths": [ + "M594 476c28 48 46 104 46 164 0 66-20 126-52 176v0 0c-58 86-156 144-268 144-34 0-64-2-92-14s-50-26-66-50c-22-32-34-56-42-104-12 50 4 96 18 120-86-52-138-142-138-250v-8c10-156 130-218 180-302 16-28 26-60 20-96 22 18 30 50 30 78 0 32-6 58-6 58 8-16 14-36 18-62 12-70 4-170-74-264l-2-2s14 0 36 6c190 32 338 182 368 372 4 24 6 46 6 70 0 32-4 64-10 94 20-46 26-86 28-110v-20z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-fireball" + ], + "defaultCode": 62233, + "grid": 0 + }, + "properties": { + "id": 227, + "order": 228, + "ligatures": "", + "prevSize": 32, + "code": 62233, + "name": "ion-fireball" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 226 + }, + { + "icon": { + "paths": [ + "M724 364c0 0 24-4 44-12 0 32-14 64-18 72-56 100-198 246-362 168-130-62-184-60-234-48-2 0-4 2-6 2-6 2-30 10-52 2v-394c0-32 28-62 66-70 78-14 212-10 296 148 78 148 194 144 266 132zM48 64c8 0 16 8 16 16v864c0 8-8 16-16 16h-32c-8 0-16-8-16-16v-864c0-8 8-16 16-16h32z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-flag" + ], + "defaultCode": 62073, + "grid": 0 + }, + "properties": { + "id": 228, + "order": 229, + "ligatures": "", + "prevSize": 32, + "code": 62073, + "name": "ion-flag" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 227 + }, + { + "icon": { + "paths": [ + "M2 640c-22-218 144-448 318-576-52 290 194 284 192 576-2 240-210 320-256 320s-228-52-254-320zM176 736c0 88 80 160 80 160s82-72 82-160-82-160-82-160-80 72-80 160z" + ], + "width": 512, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-flame" + ], + "defaultCode": 62234, + "grid": 0 + }, + "properties": { + "id": 229, + "order": 230, + "ligatures": "", + "prevSize": 32, + "code": 62234, + "name": "ion-flame" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 228 + }, + { + "icon": { + "paths": [ + "M230 904c-138-76-230-224-230-392 0-248 200-448 448-448 48 0 94 8 136 22 4 2 6 2 10 4 24 8 48 18 70 30v0c138 76 232 224 232 392 0 248-200 448-448 448-48 0-94-8-136-22-4-2-6-2-10-4-24-8-48-16-70-28zM172 314c-40 56-64 124-64 198 0 130 72 242 180 300 12 6 26 14 38 18 4 2 6 2 10 4 18 6 38 10 58 14 18 4 36 4 54 4 74 0 142-24 198-64l-104-106 72-80 110 108c40-56 64-124 64-198 0-132-74-246-182-302-12-6-24-12-36-16-4-2-6-2-10-4-18-6-38-10-58-14-18-4-36-4-54-4-74 0-144 24-200 64l106 104-72 82zM356 780l76-226h-170l278-310-76 226h170z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-flash-off" + ], + "defaultCode": 61750, + "grid": 0 + }, + "properties": { + "id": 230, + "order": 231, + "ligatures": "", + "prevSize": 32, + "code": 61750, + "name": "ion-flash-off" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 229 + }, + { + "icon": { + "paths": [ + "M0 576l448-512-102 384h294l-448 512 102-384h-294z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-flash" + ], + "defaultCode": 61751, + "grid": 0 + }, + "properties": { + "id": 231, + "order": 232, + "ligatures": "", + "prevSize": 32, + "code": 61751, + "name": "ion-flash" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 230 + }, + { + "icon": { + "paths": [ + "M732 384c36 0 38 14 36 36l-24 372c-2 22-6 40-42 40h-634c-36 0-40-18-42-40l-26-368c-2-22 0-40 36-40h696zM724 286l4 66h-688c0-12 8-92 12-126 4-36 16-34 50-34h150c56 0 46 0 74 30 32 36 38 34 82 34h286c22 0 30 6 30 30z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-folder" + ], + "defaultCode": 61753, + "grid": 0 + }, + "properties": { + "id": 232, + "order": 233, + "ligatures": "", + "prevSize": 32, + "code": 61753, + "name": "ion-folder" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 231 + }, + { + "icon": { + "paths": [ + "M640 160v128h-96v96h-128v-96h-96v-128h96v-96h128v96h96zM416 480h128v10c0 86-14 140-76 190-46 38-102 40-150 44-18 2-36 4-52 6-12 2-26 10-40 20 18 22 30 50 30 82 0 70-58 128-128 128s-128-58-128-128c0-48 26-88 64-110v-420c-38-22-64-62-64-110 0-70 58-128 128-128s128 58 128 128c0 48-26 88-64 110v320c16-8 36-14 54-18 22-4 42-4 62-6 34-2 66-6 80-18 20-16 28-22 28-100zM128 128c-36 0-64 28-64 64s28 64 64 64 64-28 64-64-28-64-64-64zM128 896c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-fork-repo" + ], + "defaultCode": 62144, + "grid": 0 + }, + "properties": { + "id": 233, + "order": 234, + "ligatures": "", + "prevSize": 32, + "code": 62144, + "name": "ion-fork-repo" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 232 + }, + { + "icon": { + "paths": [ + "M156 298v0 0 0zM256 332c0 52-30 96-74 116-24 12-22 22-22 22s32 400 32 426-6 36-18 48-30 16-46 16v0 0c-16 0-32-4-44-16s-20-26-20-48 32-426 32-426 0-12-22-22c-44-20-74-64-74-116 0-86 30-186 48-268h16v234c0 12 6 22 18 22s18-8 20-20v-2l18-234h16l20 234v2c2 12 6 20 18 20s18-10 18-22v-234h16c18 80 48 182 48 268z" + ], + "width": 256, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-fork" + ], + "defaultCode": 62074, + "grid": 0 + }, + "properties": { + "id": 234, + "order": 235, + "ligatures": "", + "prevSize": 32, + "code": 62074, + "name": "ion-fork" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 233 + }, + { + "icon": { + "paths": [ + "M448 596c-204 0-342 18-448 204 0 0 74-416 448-416v-160l320 288-320 268v-184z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-forward" + ], + "defaultCode": 61754, + "grid": 0 + }, + "properties": { + "id": 235, + "order": 236, + "ligatures": "", + "prevSize": 32, + "code": 61754, + "name": "ion-forward" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 234 + }, + { + "icon": { + "paths": [ + "M448 64c248 0 448 72 448 160 0 16-6 30-18 44v0c-70 86-302 358-302 436v174c0 46-58 82-128 82s-128-36-128-82v0-174c0-78-234-354-298-432v0c-14-16-22-32-22-48 0-88 200-160 448-160zM448 320c184 0 352-44 352-96s-166-96-352-96-352 44-352 96 168 96 352 96z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-funnel" + ], + "defaultCode": 62235, + "grid": 0 + }, + "properties": { + "id": 236, + "order": 237, + "ligatures": "", + "prevSize": 32, + "code": 62235, + "name": "ion-funnel" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 235 + }, + { + "icon": { + "paths": [ + "M694 512c0 48 30 86 74 112-8 26-20 52-32 76-50-12-90 6-124 40s-44 74-32 124c-24 12-50 24-76 32-26-44-72-74-120-74s-94 30-120 74c-26-8-54-20-78-32 12-50 4-90-30-124s-74-42-124-30c-12-24-24-52-32-78 44-26 74-72 74-120s-30-86-74-112c8-26 18-52 32-76 50 12 90-6 124-40s42-74 30-124c24-12 52-24 78-32 26 44 72 74 120 74s94-30 120-74c26 8 54 20 78 32-12 50-4 90 30 124s74 52 124 40c12 24 24 50 32 76-44 26-74 64-74 112zM384 708c108 0 196-88 196-196s-88-196-196-196-196 88-196 196 88 196 196 196z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-gear-a" + ], + "defaultCode": 61757, + "grid": 0 + }, + "properties": { + "id": 237, + "order": 238, + "ligatures": "", + "prevSize": 32, + "code": 61757, + "name": "ion-gear-a" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 236 + }, + { + "icon": { + "paths": [ + "M768 588h-88c-8 28-20 54-34 78l64 64-108 108-66-64c-24 14-48 22-76 30v92h-152v-92c-26-8-52-16-76-30l-66 64-108-108 64-64c-14-24-26-50-34-78h-88v-152h86c8-28 18-58 32-82l-60-60 108-108 58 58c26-16 54-26 84-34v-82h152v82c30 8 58 18 84 34l58-58 108 108-60 60c14 24 26 54 32 82h86v152zM384 620c60 0 108-48 108-108s-48-108-108-108-108 48-108 108 48 108 108 108z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-gear-b" + ], + "defaultCode": 61758, + "grid": 0 + }, + "properties": { + "id": 238, + "order": 239, + "ligatures": "", + "prevSize": 32, + "code": 61758, + "name": "ion-gear-b" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 237 + }, + { + "icon": { + "paths": [ + "M128 306c0 8-6 14-14 14h-100c-8 0-14-6-14-14v-100c0-8 6-14 14-14h100c8 0 14 6 14 14v100zM384 306c0 8-6 14-14 14h-100c-8 0-14-6-14-14v-100c0-8 6-14 14-14h100c8 0 14 6 14 14v100zM640 306c0 8-6 14-14 14h-100c-8 0-14-6-14-14v-100c0-8 6-14 14-14h100c8 0 14 6 14 14v100zM128 562c0 8-6 14-14 14h-100c-8 0-14-6-14-14v-100c0-8 6-14 14-14h100c8 0 14 6 14 14v100zM384 562c0 8-6 14-14 14h-100c-8 0-14-6-14-14v-100c0-8 6-14 14-14h100c8 0 14 6 14 14v100zM640 562c0 8-6 14-14 14h-100c-8 0-14-6-14-14v-100c0-8 6-14 14-14h100c8 0 14 6 14 14v100zM128 818c0 8-6 14-14 14h-100c-8 0-14-6-14-14v-100c0-8 6-14 14-14h100c8 0 14 6 14 14v100zM384 818c0 8-6 14-14 14h-100c-8 0-14-6-14-14v-100c0-8 6-14 14-14h100c8 0 14 6 14 14v100zM640 818c0 8-6 14-14 14h-100c-8 0-14-6-14-14v-100c0-8 6-14 14-14h100c8 0 14 6 14 14v100z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-grid" + ], + "defaultCode": 61759, + "grid": 0 + }, + "properties": { + "id": 239, + "order": 240, + "ligatures": "", + "prevSize": 32, + "code": 61759, + "name": "ion-grid" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 238 + }, + { + "icon": { + "paths": [ + "M628 64c6 0 12 6 12 12v168c0 6-6 12-12 12h-104c-6 0-12-6-12-12v-28c-12-10-32-18-44-14-14 4-46 26-60 50s-12 56-12 132l16 4c10 2 14 12 14 18v140c0 190 22 402 22 402 0 6-6 12-12 12h-168c-6 0-12-6-12-12 0 0 22-212 22-402v-140c0-6 6-16 14-18l14-4c0-86-10-116-44-148-36-32-82-38-126-34s-102 70-116 90-20-4-20-22c2-32 44-120 144-162s182-44 204-44 54 2 76 6 32 36 52 36c14 0 28-10 36-18v-12c0-6 6-12 12-12h104z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-hammer" + ], + "defaultCode": 62075, + "grid": 0 + }, + "properties": { + "id": 240, + "order": 241, + "ligatures": "", + "prevSize": 32, + "code": 62075, + "name": "ion-hammer" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 239 + }, + { + "icon": { + "paths": [ + "M710 580c16 8 22 26 14 42-48 92-156 146-276 146-124 0-236-58-278-148-8-16 0-34 16-42 4-2 10-2 14-2 12 0 22 6 28 18 32 68 120 110 220 110 98 0 184-42 220-112 6-10 16-16 28-16 6 0 10 2 14 4zM762 462c10 14 8 34-8 44-6 4-12 6-20 6-10 0-22-4-28-12s-14-20-34-20-28 12-34 20-18 12-28 12c-8 0-14-2-20-6-16-12-18-30-6-44 22-28 46-46 88-46s70 18 90 46zM314 462c10 14 8 34-8 44-6 4-12 6-20 6-10 0-22-4-28-12s-14-20-34-20-28 12-34 20-18 12-28 12c-8 0-14-2-20-6-16-12-18-30-6-44 22-28 46-46 88-46s70 18 90 46zM448 64c248 0 448 200 448 448s-200 448-448 448-448-200-448-448 200-448 448-448zM720 784c72-72 112-170 112-272s-40-200-112-272-170-112-272-112-200 40-272 112-112 170-112 272 40 200 112 272 170 112 272 112 200-40 272-112z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-happy-outline" + ], + "defaultCode": 62406, + "grid": 0 + }, + "properties": { + "id": 241, + "order": 242, + "ligatures": "", + "prevSize": 32, + "code": 62406, + "name": "ion-happy-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 240 + }, + { + "icon": { + "paths": [ + "M448 64c248 0 448 200 448 448s-200 448-448 448-448-200-448-448 200-448 448-448zM142 506c6 4 12 6 20 6 10 0 22-4 28-12s14-20 34-20 28 12 34 20 18 12 28 12c8 0 14-2 20-6 16-10 18-30 8-44-20-28-48-46-90-46s-66 18-88 46c-12 14-10 32 6 44zM724 622c8-16 2-34-14-42-4-2-8-4-14-4-12 0-22 6-28 16-36 70-122 112-220 112-100 0-188-42-220-110-6-12-16-18-28-18-4 0-10 0-14 2-16 8-24 26-16 42 42 90 154 148 278 148 120 0 228-54 276-146zM754 506c16-10 18-30 8-44-20-28-48-46-90-46s-66 18-88 46c-12 14-10 32 6 44 6 4 12 6 20 6 10 0 22-4 28-12s14-20 34-20 28 12 34 20 18 12 28 12c8 0 14-2 20-6z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-happy" + ], + "defaultCode": 62236, + "grid": 0 + }, + "properties": { + "id": 242, + "order": 243, + "ligatures": "", + "prevSize": 32, + "code": 62236, + "name": "ion-happy" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 241 + }, + { + "icon": { + "paths": [ + "M766 476c6 102-6 260-26 324-40 134-80 160-144 160s-116-54-116-118v-212c0-66 46-118 106-118 36 0 68 18 88 48 0 0 22-14 26-44s8-68-10-128-42-38-72-76c-4-6-10-14-16-20l-20-20c-4-4-6-6-10-8-22-18-42-34-68-46-38-18-78-26-120-26s-84 8-122 26c-26 12-44 28-66 46-4 2-6 4-10 8l-20 20s-12 14-16 20c-30 38-54 16-72 76-18 62-14 98-10 128s26 44 26 44c20-30 52-48 88-48 60 0 106 54 106 118v212c0 64-52 118-116 118s-104-26-144-160c-20-64-32-222-26-324 6-120 44-216 112-290v0c16-16 30-32 48-46s38-26 58-36c50-26 106-40 164-40s114 14 164 40c20 10 38 22 56 36s34 30 50 46v0c68 74 106 170 112 290z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-headphone" + ], + "defaultCode": 61760, + "grid": 0 + }, + "properties": { + "id": 243, + "order": 244, + "ligatures": "", + "prevSize": 32, + "code": 61760, + "name": "ion-headphone" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 242 + }, + { + "icon": { + "paths": [ + "M362 576c0 72-4 142 8 214 4 20 4 40 4 62l-306-318c-90-94-90-248 0-342 80-82 206-86 288-6-4 30-6 62-6 92-36 28-80 42-112 78l22-14c34-22 30-16 70-28 6-2 16-6 22-10 0 2-2 10-2 12 2 40 22 78 30 120 0 10 2 20-2 30-16 34-14 74-16 110zM548 602c16 36 46 58 76 78l-208 216-34-36c0-26-8-52-8-76-4-96 20-188 42-284v0c2 2 4 2 6 2 60 12 104 48 126 100zM764 192c92 94 92 248 0 342l-136 140c-56-48-84-108-130-162-24-26-52-46-82-64-6-26-16-52-22-78-6-24 28-42 32-62 6-24 6-52 6-78l38-38c80-84 214-84 294 0z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-heart-broken" + ], + "defaultCode": 62237, + "grid": 0 + }, + "properties": { + "id": 244, + "order": 245, + "ligatures": "", + "prevSize": 32, + "code": 62237, + "name": "ion-heart-broken" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 243 + }, + { + "icon": { + "paths": [ + "M764 192c92 94 92 248 0 342l-348 362-348-362c-92-94-92-248 0-342 80-84 214-84 294 0l54 56 56-56c80-84 212-84 292 0z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-heart" + ], + "defaultCode": 61761, + "grid": 0 + }, + "properties": { + "id": 245, + "order": 246, + "ligatures": "", + "prevSize": 32, + "code": 61761, + "name": "ion-heart" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 244 + }, + { + "icon": { + "paths": [ + "M448 64c248 0 448 200 448 448s-200 448-448 448-448-200-448-448 200-448 448-448zM804 368c-20-48-46-90-84-128s-82-64-130-84l-38 122c28 12 54 30 76 52s42 48 54 76zM448 704c106 0 192-86 192-192s-86-192-192-192-192 86-192 192 86 192 192 192zM176 240c-38 38-64 82-84 130l122 38c12-28 30-54 52-76s48-42 76-54l-38-122c-48 20-90 46-128 84zM92 656c20 48 46 90 84 128s82 64 130 84l38-122c-28-12-54-30-76-52s-42-48-54-76zM720 784c38-38 64-82 84-130l-122-38c-12 28-30 54-52 76s-48 42-76 54l38 122c48-20 90-46 128-84z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-help-buoy" + ], + "defaultCode": 62076, + "grid": 0 + }, + "properties": { + "id": 246, + "order": 247, + "ligatures": "", + "prevSize": 32, + "code": 62076, + "name": "ion-help-buoy" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 245 + }, + { + "icon": { + "paths": [ + "M448 64c248 0 448 200 448 448s-200 448-448 448-448-200-448-448 200-448 448-448zM488 718c2-36-24-62-58-62-32 0-60 22-60 58s24 60 56 60c34 0 62-20 62-56zM586 462c14-20 24-44 24-72 0-46-18-80-50-104-34-26-74-36-124-36-38 0-68 8-94 26-38 26-56 68-56 136h98c0-18-2-38 8-54s26-30 52-30 38 6 50 22c10 14 16 30 16 46 0 14-8 28-16 40-4 8-12 14-20 20 0 0-52 30-70 60-14 22-18 48-20 82 0 2 0 8 8 8h78s10-6 10-8c0-12 2-30 4-38 4-14 12-24 24-34l28-18c24-18 42-34 50-46z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-help-circled" + ], + "defaultCode": 61762, + "grid": 0 + }, + "properties": { + "id": 247, + "order": 248, + "ligatures": "", + "prevSize": 32, + "code": 61762, + "name": "ion-help-circled" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 246 + }, + { + "icon": { + "paths": [ + "M434 154c50 38 78 92 78 166 0 44-16 84-38 114-14 18-42 42-80 72l-42 28c-20 16-34 36-40 56-4 12-6 38-6 58 0 4-2 12-14 12h-124c-14 0-14-6-14-10 2-52 8-98 30-132 30-46 114-96 114-96 12-10 22-18 30-30 14-20 24-42 24-64 0-26-6-52-22-72-20-24-42-36-82-36s-64 22-80 48-14 58-14 86h-154c0-108 28-176 88-216 40-28 90-40 150-40 78 0 140 14 196 56zM228 740c54 2 94 40 92 96s-44 92-98 90c-52-2-92-38-90-94s44-94 96-92z" + ], + "width": 512, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-help" + ], + "defaultCode": 61763, + "grid": 0 + }, + "properties": { + "id": 248, + "order": 249, + "ligatures": "", + "prevSize": 32, + "code": 61763, + "name": "ion-help" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 247 + }, + { + "icon": { + "paths": [ + "M768 576h-96v320h-192v-256h-192v256h-192v-320h-96l384-448z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-home" + ], + "defaultCode": 61764, + "grid": 0 + }, + "properties": { + "id": 249, + "order": 250, + "ligatures": "", + "prevSize": 32, + "code": 61764, + "name": "ion-home" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 248 + }, + { + "icon": { + "paths": [ + "M64 512h512l-256 448zM614 346c16 10 26 26 26 46 0 32-28 56-60 56h-520c-32 0-60-26-60-56 0-20 12-36 28-46 2 0 2-4 4-4 8-6 14-14 16-24v-2c-4-12-4-24-4-36 0-84 68-152 152-152 16 0 32 4 46 8-6 24-8 62-8 62 4-30 22-58 22-58 36-46 92-76 154-76 106 0 192 86 192 192 0 22-4 42-10 60v2c0 8 8 18 16 24 2 0 4 4 6 4z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-icecream" + ], + "defaultCode": 62077, + "grid": 0 + }, + "properties": { + "id": 250, + "order": 251, + "ligatures": "", + "prevSize": 32, + "code": 62077, + "name": "ion-icecream" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 249 + }, + { + "icon": { + "paths": [ + "M672 448c-52 0-96-44-96-96s44-96 96-96 96 44 96 96-44 96-96 96zM840 128c32 0 56 24 56 56v656c0 32-24 56-56 56h-784c-32 0-56-24-56-56v-656c0-32 24-56 56-56h784zM634 524l198 212v-520c0-14-12-24-26-24h-716c-14 0-24 10-26 24v520l252-304c8-8 20-16 34-16s26 4 34 14l108 118 8 8c6 4 14 8 22 8s16-4 24-10l36-32c8-6 16-10 26-10s20 4 26 12z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-image" + ], + "defaultCode": 61767, + "grid": 0 + }, + "properties": { + "id": 251, + "order": 252, + "ligatures": "", + "prevSize": 32, + "code": 61767, + "name": "ion-image" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 250 + }, + { + "icon": { + "paths": [ + "M852 280c26 2 46 24 44 48l-28 526c-2 26-24 44-50 42l-660-32c-26-2-46-20-44-46l4-92-30 2c-24 2-44-14-46-36l-42-472c-2-22 14-42 38-44l592-48c24-2 44 14 46 36l10 108zM142 292c2-24 22-44 48-44l438 22-4-62h-2v-2c-2-10-10-16-20-16l-522 44c-10 0-20 8-20 18v0 2l32 356 36-50zM810 764l20-396v-2c0-12-10-20-22-20l-116-6-58-4-408-18c-12 0-22 8-24 18v0 2l-6 126-14 256v14l12-14 204-218c8-8 16-12 28-12s22 6 28 14l86 98 6 6c4 4 12 8 20 8s10-2 18-6l34-24c8-6 14-8 22-8s18 4 22 10l54 66zM682 524c-40 0-70-30-70-70s32-70 70-70c40 0 70 32 70 70s-32 70-70 70z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-images" + ], + "defaultCode": 61768, + "grid": 0 + }, + "properties": { + "id": 252, + "order": 253, + "ligatures": "", + "prevSize": 32, + "code": 61768, + "name": "ion-images" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 251 + }, + { + "icon": { + "paths": [ + "M896 506c4 248-194 450-442 454s-450-194-454-442 194-450 442-454 450 194 454 442zM448 224c-36 0-64 28-64 64s28 64 64 64 64-28 64-64-28-64-64-64zM536 790v-22h-44v-344h-132v24h44v320h-44v22h176z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-information-circled" + ], + "defaultCode": 61769, + "grid": 0 + }, + "properties": { + "id": 253, + "order": 254, + "ligatures": "", + "prevSize": 32, + "code": 61769, + "name": "ion-information-circled" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 252 + }, + { + "icon": { + "paths": [ + "M192 896h64v32h-256v-32h64v-480h-64v-32h192v512zM128 288c-54 0-96-42-96-96s42-96 96-96 96 42 96 96-42 96-96 96z" + ], + "width": 256, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-information" + ], + "defaultCode": 61770, + "grid": 0 + }, + "properties": { + "id": 254, + "order": 255, + "ligatures": "", + "prevSize": 32, + "code": 61770, + "name": "ion-information" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 253 + }, + { + "icon": { + "paths": [ + "M752 266c50 68 80 154 80 246 0 230-186 416-416 416s-416-186-416-416 186-416 416-416c92 0 178 30 246 80 10-6 22-10 36-10 36 0 64 28 64 64 0 14-4 26-10 36zM688 784c36-36 62-76 82-122 20-48 30-98 30-150s-10-102-30-150c-12-26-26-52-42-76-8 4-20 8-30 8-36 0-64-28-64-64 0-10 4-22 8-30-24-16-50-30-76-42-48-20-98-30-150-30s-102 10-150 30c-46 20-86 46-122 82s-62 76-82 122c-20 48-30 98-30 150s10 102 30 150c20 46 46 86 82 122s76 62 122 82c48 20 98 30 150 30s102-10 150-30c46-20 86-46 122-82zM224 512c0-128 64-192 192-192s192 64 192 192-64 192-192 192-192-64-192-192z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ionic" + ], + "defaultCode": 61771, + "grid": 0 + }, + "properties": { + "id": 255, + "order": 256, + "ligatures": "", + "prevSize": 32, + "code": 61771, + "name": "ion-ionic" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 254 + }, + { + "icon": { + "paths": [ + "M768 384l-108-104-18 18c70 64 114 158 114 260 0 88-32 166-86 228l72 90-24 20-70-86c-64 60-150 98-244 98v0 0c-94 0-180-38-244-98l-70 86-24-20 72-90c-54-62-86-142-86-230 0-102 44-194 114-258l-18-18-108 104c-24-28-40-64-40-104 0-88 70-160 160-164h10c40 0 78 14 108 36l-108 104 22 22c52-38 112-64 180-70v0c0-16 16-32 32-32s30 16 30 32v0c68 6 130 32 182 70l22-22-108-104c30-22 68-36 108-36h10c90 4 160 76 160 164 0 40-16 76-40 104zM44 336l182-178c-18-10-38-14-64-12-74 4-130 64-130 134 0 20 4 38 12 56zM724 552c0-176-144-316-320-316s-320 140-320 316 144 316 320 316 320-140 320-316zM582 158l182 178c8-18 12-36 12-56 0-70-56-130-130-134-26-2-46 2-64 12zM404 320h32v288h-224v-32h192v-256z" + ], + "width": 808, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-alarm-outline" + ], + "defaultCode": 62407, + "grid": 0 + }, + "properties": { + "id": 256, + "order": 257, + "ligatures": "", + "prevSize": 32, + "code": 62407, + "name": "ion-ios-alarm-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 255 + }, + { + "icon": { + "paths": [ + "M770 384l-110-104-18 18c70 64 114 158 114 260 0 88-32 166-86 228l74 90-26 20-70-86c-64 60-150 98-244 98v0 0c-94 0-180-38-244-98l-70 86-24-20 72-90c-54-62-86-140-86-228 0-102 44-196 114-260l-18-18-108 104c-24-28-40-64-40-104 0-88 70-160 160-164h10c40 0 78 14 108 36l-108 106 22 20c52-38 112-64 180-70v0c0-16 16-32 32-32s30 16 30 32v0c68 6 130 32 182 70l22-22-108-104c30-22 68-36 108-36h10c90 4 160 76 160 164 0 40-14 76-38 104zM436 608v-288h-32v256h-192v32h224z" + ], + "width": 808, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-alarm" + ], + "defaultCode": 62408, + "grid": 0 + }, + "properties": { + "id": 257, + "order": 258, + "ligatures": "", + "prevSize": 32, + "code": 62408, + "name": "ion-ios-alarm" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 256 + }, + { + "icon": { + "paths": [ + "M864 288h-832v576h832v-576zM896 256v0 640h-896v-640h896zM80 224v-32h736v32h-736zM144 160v-32h608v32h-608z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-albums-outline" + ], + "defaultCode": 62409, + "grid": 0 + }, + "properties": { + "id": 258, + "order": 259, + "ligatures": "", + "prevSize": 32, + "code": 62409, + "name": "ion-ios-albums-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 257 + }, + { + "icon": { + "paths": [ + "M896 256v0 640h-896v-640h896zM80 224v-32h736v32h-736zM144 160v-32h608v32h-608z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-albums" + ], + "defaultCode": 62410, + "grid": 0 + }, + "properties": { + "id": 259, + "order": 260, + "ligatures": "", + "prevSize": 32, + "code": 62410, + "name": "ion-ios-albums" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 258 + }, + { + "icon": { + "paths": [ + "M662 266c224 224 162 654 162 654s-52 8-130 8c-146 0-378-24-524-170-224-224-162-654-162-654s52-8 130-8c146 0 378 24 524 170zM34 130c-4 38-10 120 0 214 2 16 4 32 6 46l254-254c-50-6-102-10-156-10v0 0c-44 0-82 2-104 4zM192 736c60 60 144 106 248 132 20 6 40 10 62 14l284-284c-8-44-20-88-34-126-28-74-64-136-112-184-60-60-144-106-248-132-20-6-40-10-62-14l-284 284c8 44 20 88 34 126 28 74 64 136 112 184zM798 894c4-38 10-120 0-214-2-16-4-32-6-46l-254 254c50 6 102 10 156 10 44 0 82-2 104-4zM518 636l-56 58-24-24 58-56-46-46-56 58-24-24 58-56-46-46-56 58-24-24 58-56-46-46-56 58-24-24 58-56-44-46-58 58-22-24 134-134 24 22-58 58 46 44 56-58 24 24-58 56 46 46 56-58 24 24-58 56 46 46 56-58 24 24-58 56 44 46 58-58 24 24-58 56 44 46 58-58 22 24-134 134-24-22 58-58z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-americanfootball-outline" + ], + "defaultCode": 62411, + "grid": 0 + }, + "properties": { + "id": 260, + "order": 261, + "ligatures": "", + "prevSize": 32, + "code": 62411, + "name": "ion-ios-americanfootball-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 259 + }, + { + "icon": { + "paths": [ + "M662 266c224 224 162 654 162 654s-52 8-130 8c-146 0-378-24-524-170-224-224-162-654-162-654s52-8 130-8c146 0 378 24 524 170zM40 390l6 36 284-284-36-6zM438 670l24 24 56-58 46 44-58 58 24 22 134-134-22-24-58 58-44-46 58-56-24-24-56 58-46-46 58-56-24-24-56 58-46-46 58-56-24-24-56 58-46-46 58-56-24-24-56 58-46-44 58-58-24-22-134 134 22 24 58-58 44 46-58 56 24 24 56-58 46 46-58 56 24 24 56-58 46 46-58 56 24 24 56-58 46 46zM538 888l254-254-6-36-284 284z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-americanfootball" + ], + "defaultCode": 62412, + "grid": 0 + }, + "properties": { + "id": 261, + "order": 262, + "ligatures": "", + "prevSize": 32, + "code": 62412, + "name": "ion-ios-americanfootball" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 260 + }, + { + "icon": { + "paths": [ + "M448 96c-56 0-110 10-162 32-50 20-94 52-132 90s-70 82-90 132c-22 52-32 106-32 162s10 110 32 162c20 50 52 94 90 132s82 70 132 90c52 22 106 32 162 32s110-10 162-32c50-20 94-52 132-90s70-82 90-132c22-52 32-106 32-162s-10-110-32-162c-20-50-52-94-90-132s-82-70-132-90c-52-22-106-32-162-32zM448 64v0c248 0 448 200 448 448s-200 448-448 448-448-200-448-448 200-448 448-448zM152 640c-50 0-82-36-84-38-6-6-4-18 2-24s16-4 22 2c2 2 30 34 72 28 24-4 54-52 76-84 8-12 18-24 24-32 34-42 68-46 90-42 48 6 90 56 108 100 14 36 36 56 64 58 30 2 62-22 86-60 2-4 6-8 8-14 18-34 48-86 104-86 62 0 104 70 106 72 4 8 2 18-6 22s-18 2-22-6c0 0-10-16-24-30-12-12-32-26-54-26-36 0-58 38-76 70-2 6-6 10-8 14-30 50-72 80-116 76-40-2-72-30-92-78s-56-78-82-82c-22-2-42 8-62 32-6 8-12 18-20 30-28 40-62 90-100 96-6 0-10 2-16 2z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-analytics-outline" + ], + "defaultCode": 62413, + "grid": 0 + }, + "properties": { + "id": 262, + "order": 263, + "ligatures": "", + "prevSize": 32, + "code": 62413, + "name": "ion-ios-analytics-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 261 + }, + { + "icon": { + "paths": [ + "M448 64c248 0 448 200 448 448 0 26-2 50-6 74-2 12-4 24-6 34-48 196-226 340-436 340-244 0-442-196-448-438v-10c0-18 2-34 4-52 26-222 214-396 444-396zM862 560c2-16 2-32 2-48 0-56-10-110-32-162-20-50-52-94-90-132s-82-70-132-90c-52-22-106-32-162-32s-110 10-162 32c-50 20-94 52-132 90s-70 82-90 132c-22 52-32 106-32 162v0c28 42 58 68 58 68h2v2c2 2 30 32 72 26 24-4 54-52 76-84 8-12 18-24 24-32 34-42 68-46 90-42 48 6 90 54 108 100 14 36 36 56 64 58 30 2 62-18 86-58 2-4 6-8 8-14 18-34 48-88 104-88 62 0 104 70 106 72 6 8 18 24 32 40z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-analytics" + ], + "defaultCode": 62414, + "grid": 0 + }, + "properties": { + "id": 263, + "order": 264, + "ligatures": "", + "prevSize": 32, + "code": 62414, + "name": "ion-ios-analytics" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 262 + }, + { + "icon": { + "paths": [ + "M384 256l-254 256 254 256-64 64-320-320 320-320z" + ], + "width": 384, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-arrow-back" + ], + "defaultCode": 62415, + "grid": 0 + }, + "properties": { + "id": 264, + "order": 265, + "ligatures": "", + "prevSize": 32, + "code": 62415, + "name": "ion-ios-arrow-back" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 263 + }, + { + "icon": { + "paths": [ + "M602 320l38 42-320 342-320-342 38-42 282 300z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-arrow-down" + ], + "defaultCode": 62416, + "grid": 0 + }, + "properties": { + "id": 265, + "order": 266, + "ligatures": "", + "prevSize": 32, + "code": 62416, + "name": "ion-ios-arrow-down" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 264 + }, + { + "icon": { + "paths": [ + "M0 256l64-64 320 320-320 320-64-64 254-256z" + ], + "width": 384, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-arrow-forward" + ], + "defaultCode": 62417, + "grid": 0 + }, + "properties": { + "id": 266, + "order": 267, + "ligatures": "", + "prevSize": 32, + "code": 62417, + "name": "ion-ios-arrow-forward" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 265 + }, + { + "icon": { + "paths": [ + "M384 230l-300 282 300 282-42 38-342-320 342-320z" + ], + "width": 384, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-arrow-left" + ], + "defaultCode": 62418, + "grid": 0 + }, + "properties": { + "id": 267, + "order": 268, + "ligatures": "", + "prevSize": 32, + "code": 62418, + "name": "ion-ios-arrow-left" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 266 + }, + { + "icon": { + "paths": [ + "M0 230l42-38 342 320-342 320-42-38 300-282z" + ], + "width": 384, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-arrow-right" + ], + "defaultCode": 62419, + "grid": 0 + }, + "properties": { + "id": 268, + "order": 269, + "ligatures": "", + "prevSize": 32, + "code": 62419, + "name": "ion-ios-arrow-right" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 267 + }, + { + "icon": { + "paths": [ + "M380 644c4 4 4 8 4 12s0 8-4 12c0 0-174 158-176 160s-6 4-12 4-10-2-12-4-176-160-176-160c-6-6-6-18 0-24s18-6 24 0l148 134v-570c0-8 8-16 16-16s16 8 16 16v570l148-134c6-6 18-6 24 0z" + ], + "width": 384, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-arrow-thin-down" + ], + "defaultCode": 62420, + "grid": 0 + }, + "properties": { + "id": 269, + "order": 270, + "ligatures": "", + "prevSize": 32, + "code": 62420, + "name": "ion-ios-arrow-thin-down" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 268 + }, + { + "icon": { + "paths": [ + "M188 700c-4 4-8 4-12 4s-8 0-12-4c0 0-158-174-160-176s-4-6-4-12 2-10 4-12 160-176 160-176c6-6 18-6 24 0s6 18 0 24l-134 148h570c8 0 16 8 16 16s-8 16-16 16h-570l134 148c6 6 6 18 0 24z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-arrow-thin-left" + ], + "defaultCode": 62421, + "grid": 0 + }, + "properties": { + "id": 270, + "order": 271, + "ligatures": "", + "prevSize": 32, + "code": 62421, + "name": "ion-ios-arrow-thin-left" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 269 + }, + { + "icon": { + "paths": [ + "M452 700c-6-6-6-18 0-24l134-148h-570c-8 0-16-8-16-16s8-16 16-16h570l-134-148c-6-6-6-18 0-24s18-6 24 0c0 0 158 174 160 176s4 6 4 12-2 10-4 12-160 176-160 176c-4 4-8 4-12 4s-8 0-12-4z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-arrow-thin-right" + ], + "defaultCode": 62422, + "grid": 0 + }, + "properties": { + "id": 271, + "order": 272, + "ligatures": "", + "prevSize": 32, + "code": 62422, + "name": "ion-ios-arrow-thin-right" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 270 + }, + { + "icon": { + "paths": [ + "M380 380c-6 6-18 6-24 0l-148-134v570c0 8-8 16-16 16s-16-8-16-16v-570l-148 134c-6 6-18 6-24 0s-6-18 0-24c0 0 174-158 176-160s6-4 12-4 10 2 12 4 176 160 176 160c4 4 4 8 4 12s0 8-4 12z" + ], + "width": 384, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-arrow-thin-up" + ], + "defaultCode": 62423, + "grid": 0 + }, + "properties": { + "id": 272, + "order": 273, + "ligatures": "", + "prevSize": 32, + "code": 62423, + "name": "ion-ios-arrow-thin-up" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 271 + }, + { + "icon": { + "paths": [ + "M602 704l-282-300-282 300-38-42 320-342 320 342z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-arrow-up" + ], + "defaultCode": 62424, + "grid": 0 + }, + "properties": { + "id": 273, + "order": 274, + "ligatures": "", + "prevSize": 32, + "code": 62424, + "name": "ion-ios-arrow-up" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 272 + }, + { + "icon": { + "paths": [ + "M472 642v-2h38l-6 12c-6 12-26 38-44 54s-36 28-56 40-42 20-64 26-46 10-68 10c-32 0-66-6-98-16s-60-26-86-48c-24-22-52-58-68-92-14-32-20-66-20-116 0-36 8-76 22-110 14-32 34-60 58-84s54-42 86-56c30-12 66-18 106-18 32 0 64 6 92 16 30 10 56 24 78 44s34 42 48 70c12 26 16 52 16 88 0 28-4 56-14 80s-18 40-34 60c-16 18-26 30-46 42-22 12-40 18-58 18-16 0-30-4-40-14-6-4-10-12-12-18-12 12-22 20-34 24-20 6-36 8-52 8s-30-2-42-8-24-14-34-24-16-22-22-36-10-28-10-44c0-24 6-48 14-72v-4c8-22 10-32 26-52 16-22 34-38 56-52s48-22 76-22c24 0 42 6 62 18 14 8 24 20 32 32l12-34h36l-76 204c-4 10-8 20-10 28s-2 14-2 20c0 4 2 8 6 10s8 4 16 4c12 0 22-4 40-14 16-8 24-18 38-34 12-16 20-28 28-50s12-46 12-70c0-30-4-50-14-72-12-26-20-44-38-60s-40-30-66-40-54-14-84-14c-38 0-70 6-96 18-30 12-54 28-74 48-22 20-38 46-50 74-12 30-20 64-20 96 0 44 4 72 16 98 12 30 34 62 56 82s48 36 76 46 60 14 92 14c20 0 40-2 60-8s36-12 54-22 34-22 48-36 28-26 38-42zM294 588c8-10 16-24 22-40l42-114c-4-10-8-20-14-26-6-8-12-12-20-16-2 0-2-2-4-2-6-4-10-6-18-8-10-2-18-4-26-4-20 0-38 6-56 18s-34 26-46 44c-10 16-14 22-20 40 0 2-2 6-2 8-8 22-10 40-10 60 0 12 2 22 6 32s10 18 16 26 14 12 24 16 18 6 30 6c8 0 18-2 28-4 8-2 16-4 24-10s16-14 24-26z" + ], + "width": 510, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-at-outline" + ], + "defaultCode": 62425, + "grid": 0 + }, + "properties": { + "id": 274, + "order": 275, + "ligatures": "", + "prevSize": 32, + "code": 62425, + "name": "ion-ios-at-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 273 + }, + { + "icon": { + "paths": [ + "M456 640v0h56c-2 2-4 8-6 12-8 12-28 38-46 54s-36 28-56 40-40 20-64 26c-22 6-46 10-68 10-32 0-66-6-98-16s-60-26-86-48c-24-20-52-56-68-92-14-32-20-66-20-116 0-38 8-78 22-110s34-60 58-84 56-42 88-56c30-12 64-18 104-18 32 0 62 6 92 16s56 24 78 44 36 44 50 72c12 28 16 52 16 88 0 28-4 56-14 80-8 22-18 40-34 60-14 18-28 32-48 44-24 12-42 18-60 18s-32-4-44-16c-4-2-6-6-8-10-8 8-18 12-28 16-20 6-36 10-54 10-16 0-32-4-46-10s-24-14-34-24-18-24-24-38-8-28-8-44c0-24 4-50 12-74l2-2c8-20 10-34 26-54 16-22 34-40 56-54 24-14 48-20 76-20 24 0 44 6 66 18 10 6 16 12 24 20l10-24h50l-78 208c-4 10-6 18-8 26-2 6-2 14-2 18s0 6 2 6c0 0 2 2 10 2 10 0 22-4 38-14 14-8 20-16 32-32s18-26 26-46 12-40 12-64c0-28-2-48-12-68-10-24-20-42-36-56-18-16-38-28-62-36s-52-14-80-14c-36 0-64 6-88 16-28 12-50 26-70 46s-36 44-48 70c-12 28-18 60-18 90 0 42 6 68 16 92 12 28 32 60 52 78s44 32 70 42c28 10 56 14 86 14 20 0 40-4 58-8s36-12 52-22 56-40 76-66zM288 582c8-10 14-24 20-38l40-110c-2-8-6-14-10-18-6-6-12-12-18-16h-4v-2c-6-4-10-4-16-6-8-2-16-2-24-2-18 0-34 4-50 14-20 12-34 28-42 42-10 16-12 22-18 38 0 2-2 4-2 6-6 20-12 38-12 56 0 10 2 20 6 28s8 16 14 22 14 12 22 16 16 4 26 4c8 0 16 0 24-2v0c8-2 14-4 22-10 6-4 14-10 22-22z" + ], + "width": 512, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-at" + ], + "defaultCode": 62426, + "grid": 0 + }, + "properties": { + "id": 275, + "order": 276, + "ligatures": "", + "prevSize": 32, + "code": 62426, + "name": "ion-ios-at" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 274 + }, + { + "icon": { + "paths": [ + "M0 768v-512h160v32h-128v448h128v32h-160zM672 256h160v512h-160v-32h128v-448h-128v-32zM128 640v-256h32v256h-32zM672 640v-256h32v256h-32zM544 704v-384h32v384h-32zM256 704v-384h32v384h-32zM398 672v-320h32v320h-32z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-barcode-outline" + ], + "defaultCode": 62427, + "grid": 0 + }, + "properties": { + "id": 276, + "order": 277, + "ligatures": "", + "prevSize": 32, + "code": 62427, + "name": "ion-ios-barcode-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 275 + }, + { + "icon": { + "paths": [ + "M0 256h832v512h-832v-512zM160 640v-256h-32v256h32zM288 704v-384h-32v384h32zM430 672v-320h-32v320h32zM576 704v-384h-32v384h32zM704 640v-256h-32v256h32z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-barcode" + ], + "defaultCode": 62428, + "grid": 0 + }, + "properties": { + "id": 277, + "order": 278, + "ligatures": "", + "prevSize": 32, + "code": 62428, + "name": "ion-ios-barcode" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 276 + }, + { + "icon": { + "paths": [ + "M830 558v2c-22 194-180 348-374 366v0h-4c-4 0-6 2-10 2h-26c-230 0-416-186-416-416v-26c0-4 2-6 2-10v-4c18-194 172-352 366-374v0 0c16-2 32-2 48-2 230 0 416 186 416 416 0 14 0 28-2 40v0 6zM798 512c0-210-172-382-382-382-6 0-10 2-16 2 0 22 4 42 8 62l40-12 10 30-42 14c4 14 8 28 14 42 4 10 10 22 16 32l34-24 18 26-38 26c14 24 32 46 52 66l28-30 24 24-30 30c22 20 44 36 68 50l24-36 28 18-24 34c10 4 20 10 30 14 14 6 28 10 44 14l14-40 30 10-12 38c20 4 40 8 60 8 0-6 2-10 2-16zM34 512c0 210 172 382 382 382h8c-2-18-2-34-6-52l-44 14-10-32 46-14c-4-16-10-32-16-48-4-10-8-18-12-28l-40 26-18-26 42-28c-14-24-32-48-52-70l-34 34-22-22 34-34c-20-20-44-36-68-50l-28 42-28-18 28-40c-10-4-20-10-30-14-14-6-30-12-46-16l-16 48-30-10 14-46c-18-4-36-4-54-6v8zM456 892c176-18 316-156 338-332-22-2-46-6-68-10l-18 54-30-10 16-50c-28-8-56-20-82-34l-30 46-26-18 28-42c-26-16-52-34-74-56l-38 38-22-22 38-38c-20-22-38-46-54-72l-42 28-18-26 44-30c-14-26-24-54-32-82l-50 16-10-32 52-16c-4-24-8-46-10-70-176 22-314 162-332 338 20 2 42 4 62 8l16-46 30 10-14 44c28 8 56 18 84 32l26-38 28 18-26 36c26 16 50 34 72 56l34-34 22 22-34 34c22 24 40 48 56 74l38-26 18 28-40 26c14 28 24 56 32 84l46-14 10 30-48 16c4 20 6 40 8 60z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-baseball-outline" + ], + "defaultCode": 62429, + "grid": 0 + }, + "properties": { + "id": 278, + "order": 279, + "ligatures": "", + "prevSize": 32, + "code": 62429, + "name": "ion-ios-baseball-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 277 + }, + { + "icon": { + "paths": [ + "M416 96c230 0 416 186 416 416 0 16 0 32-2 48v0 0c-24 208-200 368-414 368-230 0-416-186-416-416 0-214 160-390 368-414v0 0c16-2 32-2 48-2zM424 894c10 0 22 0 32-2-2-20-4-40-8-60l48-16-10-30-46 14c-8-28-18-56-32-84l40-26-18-28-38 26c-16-26-34-50-56-74l34-34-22-22-34 34c-22-22-46-40-72-56l26-36-28-18-26 38c-28-14-56-24-84-32l14-44-30-10-16 46c-20-4-42-6-62-8-2 10-2 22-2 32 18 2 36 2 54 6l-14 46 30 10 16-48c16 4 32 10 46 16 10 4 20 10 30 14l-28 40 28 18 28-42c24 14 48 30 68 50l-34 34 22 22 34-34c20 22 38 46 52 70l-42 28 18 26 40-26c4 10 8 18 12 28 6 16 12 32 16 48l-46 14 10 32 44-14c4 16 4 34 6 52zM726 550c22 4 46 8 68 10 2-10 2-22 2-32-20-2-40-4-60-8l12-38-30-10-14 40c-16-4-30-8-44-14-10-4-20-10-30-14l24-34-28-18-24 36c-24-14-46-30-68-50l30-30-24-24-30 30c-20-20-36-42-50-66l38-26-18-26-34 24c-6-10-12-22-16-32-6-14-10-28-14-42l42-14-10-30-40 12c-4-20-6-40-8-62-10 0-22 0-32 2 2 24 6 46 10 70l-52 16 10 32 50-16c8 28 18 56 32 82l-44 30 18 26 42-28c16 26 34 50 54 72l-38 38 22 22 38-38c22 22 48 40 74 56l-28 42 26 18 30-46c26 14 54 26 82 34l-16 50 30 10z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-baseball" + ], + "defaultCode": 62430, + "grid": 0 + }, + "properties": { + "id": 279, + "order": 280, + "ligatures": "", + "prevSize": 32, + "code": 62430, + "name": "ion-ios-baseball" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 278 + }, + { + "icon": { + "paths": [ + "M416 96c230 0 416 186 416 416s-186 416-416 416-416-186-416-416 186-416 416-416zM798 512c0-110-48-210-124-280-28 68-62 130-104 190 30 24 62 42 98 58 42 18 86 28 130 32v0zM650 210c-64-50-146-80-234-80v0c4 44 12 88 30 130 20 50 52 94 90 132 4 2 4 6 8 8 40-58 76-120 104-186 0-2 2-2 2-4zM384 132c-102 8-192 58-256 130 128 56 242 138 338 238 22-24 42-48 60-74-80-74-134-178-142-294zM466 548c-30 32-62 60-96 88 56 70 90 158 94 254 66-8 126-34 176-70-44-100-102-190-174-272zM428 540l16-16-20-20c-92-92-198-164-316-216-36 50-62 110-70 176 124 6 232 62 310 148 28-22 54-46 80-72zM36 496c0 6-2 10-2 16 0 90 32 174 86 240 72-32 142-72 204-120l-14-14c-38-38-82-70-132-90-44-18-92-30-142-32zM142 778c70 72 166 116 274 116 6 0 10-2 16-2-2-50-12-96-32-142-14-34-34-66-56-94-62 48-130 90-202 122zM666 800c74-64 122-154 130-256-92-6-178-42-246-96-20 26-40 52-62 76 72 82 134 174 178 276z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-basketball-outline" + ], + "defaultCode": 62431, + "grid": 0 + }, + "properties": { + "id": 280, + "order": 281, + "ligatures": "", + "prevSize": 32, + "code": 62431, + "name": "ion-ios-basketball-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 279 + }, + { + "icon": { + "paths": [ + "M416 96c230 0 416 186 416 416s-186 416-416 416-416-186-416-416 186-416 416-416zM666 800c-44-102-106-194-178-276 22-24 42-50 62-76 68 54 154 90 246 96 0-10 2-22 2-32-44-4-88-14-130-32-36-16-68-34-98-58 42-60 76-122 104-190-8-8-16-16-24-22 0 2-2 2-2 4-28 66-64 128-104 186-4-2-4-4-8-8-38-38-70-82-90-132-18-42-26-86-30-130-10 0-22 2-32 2 8 116 62 220 142 294-18 26-38 50-60 74-96-100-210-182-338-238-8 8-14 18-20 26 118 52 224 124 316 216l20 20-16 16c-26 26-52 50-80 72-78-86-186-142-310-148-2 10-2 22-2 32 50 2 98 14 142 32 50 20 94 52 132 90l14 14c-62 48-132 88-204 120 8 8 14 18 22 26 72-32 140-74 202-122 22 28 42 60 56 94 20 46 30 92 32 142 10 0 22 0 32-2-4-96-38-184-94-254 34-28 66-56 96-88 72 82 130 172 174 272 8-6 18-12 26-20z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-basketball" + ], + "defaultCode": 62432, + "grid": 0 + }, + "properties": { + "id": 281, + "order": 282, + "ligatures": "", + "prevSize": 32, + "code": 62432, + "name": "ion-ios-basketball" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 280 + }, + { + "icon": { + "paths": [ + "M636 452c0 228 56 252 132 316h-768c76-64 132-88 132-316 0-196 106-260 204-276v-4c0-24 22-44 48-44s48 20 48 44v4c98 14 204 80 204 276zM86 736h596c-50-50-80-116-80-284 0-92-26-160-74-202-46-38-104-46-144-46s-98 8-144 46c-50 42-74 110-74 202 0 102-10 170-34 220-12 26-28 46-46 64zM384 896c-54 0-98-40-104-86h208c-6 46-50 86-104 86z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-bell-outline" + ], + "defaultCode": 62433, + "grid": 0 + }, + "properties": { + "id": 282, + "order": 283, + "ligatures": "", + "prevSize": 32, + "code": 62433, + "name": "ion-ios-bell-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 281 + }, + { + "icon": { + "paths": [ + "M636 452c0 228 56 252 132 316h-768c76-64 132-88 132-316 0-196 106-260 204-276v-4c0-24 22-44 48-44s48 20 48 44v4c98 14 204 80 204 276zM384 896c-54 0-98-40-104-86h208c-6 46-50 86-104 86z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-bell" + ], + "defaultCode": 62434, + "grid": 0 + }, + "properties": { + "id": 283, + "order": 284, + "ligatures": "", + "prevSize": 32, + "code": 62434, + "name": "ion-ios-bell" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 282 + }, + { + "icon": { + "paths": [ + "M384 96c-36 0-64 28-64 64s28 64 64 64 64-28 64-64-28-64-64-64zM384 64v0c54 0 96 42 96 96s-42 96-96 96-96-42-96-96 42-96 96-96zM720 288c26 0 48 22 48 48s-22 48-48 48h-200c-10 0-28 10-36 30-10 24-4 66 2 102l8 42v2l64 344c4 26-12 52-38 56h-10c-22 0-44-16-48-40l-42-240s-10-62-34-62h-4c-24 0-38 62-38 62v0l-42 240c-4 24-22 40-44 40h-10c-26-4-42-30-38-56l64-344v-2l8-42c6-36 12-78 2-102-8-20-24-30-36-30h-200c-26 0-48-22-48-48s22-48 48-48h672zM48 352c-8 0-16-8-16-16s8-16 16-16h672c8 0 16 8 16 16s-8 16-16 16h-204c-32 0-52 30-60 48-10 26-12 64-2 122v0 0l6 38 2 6 64 344c0 6 0 10-2 12s-4 4-10 6h-4c-8 0-14-4-16-12l-42-240c0-4-4-20-10-38-4-12-10-22-16-30-14-18-28-22-40-22h-4c-10 0-26 4-40 22-6 8-12 18-16 30-8 18-12 34-12 36v2l-42 240c-2 8-6 12-14 12h-4c-6 0-8-4-10-6s-4-6-2-12l64-344v-2l8-42c10-58 10-96 0-122-8-18-28-48-64-48z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-body-outline" + ], + "defaultCode": 62435, + "grid": 0 + }, + "properties": { + "id": 284, + "order": 285, + "ligatures": "", + "prevSize": 32, + "code": 62435, + "name": "ion-ios-body-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 283 + }, + { + "icon": { + "paths": [ + "M288 160c0-64 32-96 96-96s96 32 96 96-32 96-96 96-96-32-96-96zM720 288c14 0 24 4 34 14s14 20 14 34-4 24-14 34-20 14-34 14h-196c-16 4-30 12-36 28-8 18-6 54 2 104l8 42v2l60 344c2 14 0 26-8 36s-16 18-30 20-26 0-36-8-18-18-20-32l-42-240v2l-4-18c-2-10-6-22-12-32s-12-16-20-16h-4c-16 0-28 22-36 66v-2l-42 240c-2 14-10 24-20 32s-22 10-36 8-22-10-30-20-10-22-8-36l60-344v-2l8-42c8-50 10-86 2-104-6-16-20-24-36-28h-196c-14 0-24-4-34-14s-14-20-14-34 4-24 14-34 20-14 34-14h672z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-body" + ], + "defaultCode": 62436, + "grid": 0 + }, + "properties": { + "id": 285, + "order": 286, + "ligatures": "", + "prevSize": 32, + "code": 62436, + "name": "ion-ios-body" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 284 + }, + { + "icon": { + "paths": [ + "M262 264l-200 280h168l-6 38-34 178 200-280h-168l6-38zM320 128v0l-60 320h192l-320 448 60-320h-192z" + ], + "width": 452, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-bolt-outline" + ], + "defaultCode": 62437, + "grid": 0 + }, + "properties": { + "id": 286, + "order": 287, + "ligatures": "", + "prevSize": 32, + "code": 62437, + "name": "ion-ios-bolt-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 285 + }, + { + "icon": { + "paths": [ + "M320 128v0l-60 320h192l-320 448 60-320h-192z" + ], + "width": 452, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-bolt" + ], + "defaultCode": 62438, + "grid": 0 + }, + "properties": { + "id": 287, + "order": 288, + "ligatures": "", + "prevSize": 32, + "code": 62438, + "name": "ion-ios-bolt" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 286 + }, + { + "icon": { + "paths": [ + "M568 128c110 0 200 52 200 158v566h-44c-34-60-88-84-156-84-80 0-148 56-164 128h-40c-16-72-84-128-164-128-68 0-130 32-156 84h-44v-566c0-106 90-158 200-158 82 0 156 28 184 88 24-60 102-88 184-88zM368 822v-538c-2-86-78-124-168-124-88 0-162 38-168 122v526h2c38-52 96-72 166-72s132 34 168 86zM736 296v-30c-6-84-80-106-168-106-92 0-168 40-168 128v534c36-52 98-86 168-86s132 20 168 72v-512z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-book-outline" + ], + "defaultCode": 62439, + "grid": 0 + }, + "properties": { + "id": 288, + "order": 289, + "ligatures": "", + "prevSize": 32, + "code": 62439, + "name": "ion-ios-book-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 287 + }, + { + "icon": { + "paths": [ + "M200 128c70 0 134 20 168 62v706h-4c-16-72-84-128-164-128-68 0-130 32-156 84h-44v-566c0-106 90-158 200-158zM568 128c110 0 200 52 200 158v566h-44c-34-60-88-84-156-84-80 0-148 56-164 128h-4v-706c34-42 100-62 168-62z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-book" + ], + "defaultCode": 62440, + "grid": 0 + }, + "properties": { + "id": 289, + "order": 290, + "ligatures": "", + "prevSize": 32, + "code": 62440, + "name": "ion-ios-book" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 288 + }, + { + "icon": { + "paths": [ + "M770 128c38 0 66 26 66 64v572c0 38-28 68-66 68h-286s-50 8-50 38v26h-32v-26c0-30-22-38-50-38h-286c-38 0-66-30-66-68v-572c0-38 28-64 66-64h300c20 0 40 10 52 24v0 0c12-14 32-24 52-24h300zM402 822v-618c0-18-24-44-50-44h-286c-18 0-32 14-32 32v572c0 18 14 36 32 36h288c20 0 38 6 48 22zM546 160v200l46-28 18-12 18 12 46 28v-200h-128zM802 764v-572c0-18-14-32-32-32h-64v262l-96-64-96 64v-262h-30c-26 0-50 26-50 44v618c10-18 28-22 48-22h288c18 0 32-18 32-36z" + ], + "width": 836, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-bookmarks-outline" + ], + "defaultCode": 62441, + "grid": 0 + }, + "properties": { + "id": 290, + "order": 291, + "ligatures": "", + "prevSize": 32, + "code": 62441, + "name": "ion-ios-bookmarks-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 289 + }, + { + "icon": { + "paths": [ + "M592 330l-46 30v-232h128v232l-46-30-18-12zM770 128c38 0 66 26 66 64v572c0 38-28 68-66 68h-286s-50 8-50 38v26h-32v-26c0-30-22-38-50-38h-286c-38 0-66-30-66-68v-572c0-38 28-64 66-64h300s36 16 36 30v658l16 12 16-12v-658s20-30 36-30h44v292l96-64 96 64v-292h64z" + ], + "width": 836, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-bookmarks" + ], + "defaultCode": 62442, + "grid": 0 + }, + "properties": { + "id": 291, + "order": 292, + "ligatures": "", + "prevSize": 32, + "code": 62442, + "name": "ion-ios-bookmarks" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 290 + }, + { + "icon": { + "paths": [ + "M384 480h-128c-18 0-32 14-32 32s14 32 32 32h128c18 0 32-14 32-32s-14-32-32-32zM384 448v0c36 0 64 28 64 64s-28 64-64 64h-128c-36 0-64-28-64-64s28-64 64-64h128zM640 224v160h-32v416h-576v-416h-32v-160h640zM576 768v-384h-512v384h512zM608 352v-96h-576v96h576z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-box-outline" + ], + "defaultCode": 62443, + "grid": 0 + }, + "properties": { + "id": 292, + "order": 293, + "ligatures": "", + "prevSize": 32, + "code": 62443, + "name": "ion-ios-box-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 291 + }, + { + "icon": { + "paths": [ + "M32 800v-384h576v384h-576zM256 480c-18 0-32 14-32 32s14 32 32 32h128c18 0 32-14 32-32s-14-32-32-32h-128zM0 224h640v160h-640v-160z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-box" + ], + "defaultCode": 62444, + "grid": 0 + }, + "properties": { + "id": 293, + "order": 294, + "ligatures": "", + "prevSize": 32, + "code": 62444, + "name": "ion-ios-box" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 292 + }, + { + "icon": { + "paths": [ + "M736 256h96v640h-832v-640h96v-32h64v32h96v-64c0-36 20-64 58-64h198c38 0 64 28 64 64v64h96v-32h64v32zM288 256v0h256v-60c0-20-14-36-34-36h-194c-22 0-28 16-28 36v60zM800 864v-448h-768v448h768zM800 384v-96h-64v32h-64v-32h-512v32h-64v-32h-64v96h768z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-briefcase-outline" + ], + "defaultCode": 62445, + "grid": 0 + }, + "properties": { + "id": 294, + "order": 295, + "ligatures": "", + "prevSize": 32, + "code": 62445, + "name": "ion-ios-briefcase-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 293 + }, + { + "icon": { + "paths": [ + "M96 256v-32h64v32h-64zM0 896v-480h832v480h-832zM672 256v-32h64v32h-64zM736 256h96v128h-832v-128h96v64h64v-64h96v-64c0-36 20-64 58-64h198c38 0 64 28 64 64v64h96v64h64v-64zM544 256v-60c0-20-14-36-34-36h-194c-22 0-28 16-28 36v60h256z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-briefcase" + ], + "defaultCode": 62446, + "grid": 0 + }, + "properties": { + "id": 295, + "order": 296, + "ligatures": "", + "prevSize": 32, + "code": 62446, + "name": "ion-ios-briefcase" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 294 + }, + { + "icon": { + "paths": [ + "M0 288h608v608h-608v-608zM576 864v-544h-544v544h544zM768 128v608h-128v-32h96v-544h-544v96h-32v-128h608z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-browsers-outline" + ], + "defaultCode": 62447, + "grid": 0 + }, + "properties": { + "id": 296, + "order": 297, + "ligatures": "", + "prevSize": 32, + "code": 62447, + "name": "ion-ios-browsers-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 295 + }, + { + "icon": { + "paths": [ + "M0 288h608v608h-608v-608zM160 128h608v608h-128v-480h-480v-128z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-browsers" + ], + "defaultCode": 62448, + "grid": 0 + }, + "properties": { + "id": 297, + "order": 298, + "ligatures": "", + "prevSize": 32, + "code": 62448, + "name": "ion-ios-browsers" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 296 + }, + { + "icon": { + "paths": [ + "M64 320v-128h448v128h-448zM96 224v64h384v-64h-384zM512 128c36 0 64 28 64 64v640c0 36-28 64-64 64h-448c-36 0-64-28-64-64v-640c0-36 28-64 64-64h448zM544 832v-640c0-18-14-32-32-32h-448c-18 0-32 14-32 32v640c0 18 14 32 32 32h448c18 0 32-14 32-32zM96 480h96v32h-128v-128h32v96zM96 640h96v32h-128v-128h32v96zM96 800h96v32h-128v-128h32v96zM256 480h96v32h-128v-128h32v96zM416 480h96v32h-128v-128h32v96zM256 640h96v32h-128v-128h32v96zM256 800h96v32h-128v-128h32v96zM416 800h96v32h-128v-288h32v256z" + ], + "width": 576, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-calculator-outline" + ], + "defaultCode": 62449, + "grid": 0 + }, + "properties": { + "id": 298, + "order": 299, + "ligatures": "", + "prevSize": 32, + "code": 62449, + "name": "ion-ios-calculator-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 297 + }, + { + "icon": { + "paths": [ + "M512 128c36 0 64 28 64 64v640c0 36-28 64-64 64h-448c-36 0-64-28-64-64v-640c0-36 28-64 64-64h448zM496 560h-96v256h96v-256zM496 400h-96v96h96v-96zM336 720h-96v96h96v-96zM336 560h-96v96h96v-96zM336 400h-96v96h96v-96zM176 720h-96v96h96v-96zM176 560h-96v96h96v-96zM176 400h-96v96h96v-96zM80 304h416v-96h-416v96z" + ], + "width": 576, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-calculator" + ], + "defaultCode": 62450, + "grid": 0 + }, + "properties": { + "id": 299, + "order": 300, + "ligatures": "", + "prevSize": 32, + "code": 62450, + "name": "ion-ios-calculator" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 298 + }, + { + "icon": { + "paths": [ + "M32 224v128h704v-128zM576 192h192v704h-768v-704h192v-64h32v64h320v-64h32v64zM736 864v-480h-704v480h704zM736 352v-128h-160v64h-32v-64h-320v64h-32v-64h-160v128h704z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-calendar-outline" + ], + "defaultCode": 62451, + "grid": 0 + }, + "properties": { + "id": 300, + "order": 301, + "ligatures": "", + "prevSize": 32, + "code": 62451, + "name": "ion-ios-calendar-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 299 + }, + { + "icon": { + "paths": [ + "M0 896v-512h768v512h-768zM768 192v160h-768v-160h192v96h32v-96h320v96h32v-96h192zM192 192v-64h32v64h-32zM544 192v-64h32v64h-32z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-calendar" + ], + "defaultCode": 62452, + "grid": 0 + }, + "properties": { + "id": 301, + "order": 302, + "ligatures": "", + "prevSize": 32, + "code": 62452, + "name": "ion-ios-calendar" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 300 + }, + { + "icon": { + "paths": [ + "M708 320c36 0 60 26 60 62v352c0 36-24 66-60 66h-640c-36 0-68-30-68-66v-352c0-36 32-62 68-62h26v-32h68v32h26c64-72 86-96 110-96h176c24 0 46 24 110 96h124zM736 734v-352c0-18-10-30-28-30h-138l-10-6c-6-8-14-16-20-22-24-26-40-48-52-60-10-10-14-8-14-8h-176s-4 0-14 8c-12 10-28 28-50 54-6 8-14 20-22 28l-10 6h-134c-18 0-36 14-36 30v352c0 18 18 34 36 34h640c16 0 28-16 28-34zM384 380c94 0 172 76 172 170s-78 170-172 170-172-76-172-170 78-170 172-170zM384 688c76 0 140-62 140-138s-64-138-140-138-140 62-140 138 64 138 140 138zM576 418v-34h34v34h-34zM320 550c0-42 22-64 64-64s64 22 64 64-22 64-64 64-64-22-64-64z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-camera-outline" + ], + "defaultCode": 62453, + "grid": 0 + }, + "properties": { + "id": 302, + "order": 303, + "ligatures": "", + "prevSize": 32, + "code": 62453, + "name": "ion-ios-camera-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 301 + }, + { + "icon": { + "paths": [ + "M708 320c36 0 60 26 60 62v352c0 36-24 66-60 66h-640c-36 0-68-30-68-66v-352c0-36 32-62 68-62h26v-32h68v32h26c64-72 86-96 110-96h176c24 0 46 24 110 96h124zM384 720c94 0 172-76 172-170s-78-170-172-170-172 76-172 170 78 170 172 170zM610 418v-34h-34v34h34zM384 412c76 0 140 62 140 138s-64 138-140 138-140-62-140-138 64-138 140-138zM384 614c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-camera" + ], + "defaultCode": 62454, + "grid": 0 + }, + "properties": { + "id": 303, + "order": 304, + "ligatures": "", + "prevSize": 32, + "code": 62454, + "name": "ion-ios-camera" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 302 + }, + { + "icon": { + "paths": [ + "M192 800c26 0 48 22 48 48s-22 48-48 48-48-22-48-48 22-48 48-48zM192 864c8 0 16-8 16-16s-8-16-16-16-16 8-16 16 8 16 16 16zM640 800c26 0 48 22 48 48s-22 48-48 48-48-22-48-48 22-48 48-48zM640 864c8 0 16-8 16-16s-8-16-16-16-16 8-16 16 8 16 16 16zM768 256l-32 256-542 96 10 60c14 68 42 68 52 68h480v32h-480c-22 0-42-10-56-28-12-16-22-38-26-66l-86-468c-4-16-6-24-14-32-12-10-36-14-74-14v-32c46 0 76 8 94 22 14 12 20 28 24 42zM710 484l22-198-608-62 64 352z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-cart-outline" + ], + "defaultCode": 62455, + "grid": 0 + }, + "properties": { + "id": 304, + "order": 305, + "ligatures": "", + "prevSize": 32, + "code": 62455, + "name": "ion-ios-cart-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 303 + }, + { + "icon": { + "paths": [ + "M192 800c26 0 48 22 48 48s-22 48-48 48-48-22-48-48 22-48 48-48zM640 800c26 0 48 22 48 48s-22 48-48 48-48-22-48-48 22-48 48-48zM768 256l-32 256-542 96 10 60c14 68 42 68 52 68h480v32h-480c-22 0-42-10-56-28-12-16-22-38-26-66l-86-468c-4-16-6-24-14-32-12-10-36-14-74-14v-32c46 0 76 8 94 22 14 12 20 28 24 42z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-cart" + ], + "defaultCode": 62456, + "grid": 0 + }, + "properties": { + "id": 305, + "order": 306, + "ligatures": "", + "prevSize": 32, + "code": 62456, + "name": "ion-ios-cart" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 304 + }, + { + "icon": { + "paths": [ + "M32 128v384h192v32h-224v-448h576v224h-32v-192h-512zM256 352h576v448h-96v128h-26l-128-128h-326v-448zM800 768v-384h-512v384h306l110 110v-110h96z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-chatboxes-outline" + ], + "defaultCode": 62457, + "grid": 0 + }, + "properties": { + "id": 306, + "order": 307, + "ligatures": "", + "prevSize": 32, + "code": 62457, + "name": "ion-ios-chatboxes-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 305 + }, + { + "icon": { + "paths": [ + "M576 96v224h-352v224h-224v-448h576zM256 352h576v448h-96v128h-26l-128-128h-326v-448z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-chatboxes" + ], + "defaultCode": 62458, + "grid": 0 + }, + "properties": { + "id": 307, + "order": 308, + "ligatures": "", + "prevSize": 32, + "code": 62458, + "name": "ion-ios-chatboxes" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 306 + }, + { + "icon": { + "paths": [ + "M384 224c-194 0-352 124-352 276 0 52 20 102 54 146 0 2 0 4 2 6s4 2 4 4c8 12 12 26 12 40 0 6 2 6-26 94l78-34c4-2 20-8 22-8h2c10-4 20-6 32-6 10 0 18 2 28 4l2 2h4c38 12 82 20 140 20 96 0 184-30 250-80 64-50 100-116 100-188 0-152-158-276-352-276zM384 192v0c212 0 384 138 384 308s-170 300-382 300c-54 0-104-6-150-22h-4c-6-2-12-4-20-4s-18 2-24 4v0c-2 0-18 8-20 8l-100 44-4 2h-12c-12-2-16-12-14-20v0s34-114 34-116c0-8-2-16-6-22v0 0 0l-6-6c-38-48-60-106-60-168 0-170 172-308 384-308z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-chatbubble-outline" + ], + "defaultCode": 62459, + "grid": 0 + }, + "properties": { + "id": 308, + "order": 309, + "ligatures": "", + "prevSize": 32, + "code": 62459, + "name": "ion-ios-chatbubble-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 307 + }, + { + "icon": { + "paths": [ + "M384 192v0c212 0 384 138 384 308s-170 300-382 300c-54 0-104-6-150-22h-4c-6-2-12-4-20-4s-18 2-24 4v0c-2 0-18 8-20 8l-100 44-4 2h-12c-12-2-16-12-14-20v0s34-114 34-116c0-8-2-16-6-22v0 0 0l-6-6c-38-48-60-106-60-168 0-170 172-308 384-308z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-chatbubble" + ], + "defaultCode": 62460, + "grid": 0 + }, + "properties": { + "id": 309, + "order": 310, + "ligatures": "", + "prevSize": 32, + "code": 62460, + "name": "ion-ios-chatbubble" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 308 + }, + { + "icon": { + "paths": [ + "M148 660c-4 4-12 8-18 8s-14-4-18-8l-112-112 36-36 94 94 250-252 34 36z" + ], + "width": 414, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-checkmark-empty" + ], + "defaultCode": 62461, + "grid": 0 + }, + "properties": { + "id": 310, + "order": 311, + "ligatures": "", + "prevSize": 32, + "code": 62461, + "name": "ion-ios-checkmark-empty" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 309 + }, + { + "icon": { + "paths": [ + "M584 354l36 36-268 270c-4 4-12 8-18 8s-14-4-18-8l-112-112 36-36 94 94zM416 96c230 0 416 186 416 416s-186 416-416 416-416-186-416-416 186-416 416-416zM416 894c210 0 382-172 382-382s-172-382-382-382-382 172-382 382 172 382 382 382z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-checkmark-outline" + ], + "defaultCode": 62462, + "grid": 0 + }, + "properties": { + "id": 311, + "order": 312, + "ligatures": "", + "prevSize": 32, + "code": 62462, + "name": "ion-ios-checkmark-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 310 + }, + { + "icon": { + "paths": [ + "M416 96c230 0 416 186 416 416s-186 416-416 416-416-186-416-416 186-416 416-416zM352 660l268-270-36-36-250 252-94-94-36 36 112 112c4 4 12 8 18 8s14-4 18-8z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-checkmark" + ], + "defaultCode": 62463, + "grid": 0 + }, + "properties": { + "id": 312, + "order": 313, + "ligatures": "", + "prevSize": 32, + "code": 62463, + "name": "ion-ios-checkmark" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 311 + }, + { + "icon": { + "paths": [ + "M416 96c230 0 416 186 416 416s-186 416-416 416-416-186-416-416 186-416 416-416zM416 894c210 0 382-172 382-382s-172-382-382-382-382 172-382 382 172 382 382 382zM416 192c176 0 320 144 320 320s-144 320-320 320-320-144-320-320 144-320 320-320z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-circle-filled" + ], + "defaultCode": 62464, + "grid": 0 + }, + "properties": { + "id": 313, + "order": 314, + "ligatures": "", + "prevSize": 32, + "code": 62464, + "name": "ion-ios-circle-filled" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 312 + }, + { + "icon": { + "paths": [ + "M416 96c230 0 416 186 416 416s-186 416-416 416-416-186-416-416 186-416 416-416zM416 894c210 0 382-172 382-382s-172-382-382-382-382 172-382 382 172 382 382 382z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-circle-outline" + ], + "defaultCode": 62465, + "grid": 0 + }, + "properties": { + "id": 314, + "order": 315, + "ligatures": "", + "prevSize": 32, + "code": 62465, + "name": "ion-ios-circle-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 313 + }, + { + "icon": { + "paths": [ + "M416 96c230 0 416 186 416 416s-186 416-416 416-416-186-416-416 186-416 416-416zM416 894c210 0 382-172 382-382s-172-382-382-382-382 172-382 382 172 382 382 382zM416 512v-256h34v290h-226v-34h192z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-clock-outline" + ], + "defaultCode": 62466, + "grid": 0 + }, + "properties": { + "id": 315, + "order": 316, + "ligatures": "", + "prevSize": 32, + "code": 62466, + "name": "ion-ios-clock-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 314 + }, + { + "icon": { + "paths": [ + "M416 96c230 0 416 186 416 416s-186 416-416 416-416-186-416-416 186-416 416-416zM450 546v-290h-34v256h-192v34h226z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-clock" + ], + "defaultCode": 62467, + "grid": 0 + }, + "properties": { + "id": 316, + "order": 317, + "ligatures": "", + "prevSize": 32, + "code": 62467, + "name": "ion-ios-clock" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 315 + }, + { + "icon": { + "paths": [ + "M360 320l24 24-168 168 168 168-24 24-168-168-168 168-24-24 168-168-168-168 24-24 168 168z" + ], + "width": 384, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-close-empty" + ], + "defaultCode": 62468, + "grid": 0 + }, + "properties": { + "id": 317, + "order": 318, + "ligatures": "", + "prevSize": 32, + "code": 62468, + "name": "ion-ios-close-empty" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 316 + }, + { + "icon": { + "paths": [ + "M710 218c162 162 162 426 0 588s-426 162-588 0-162-426 0-588 426-162 588 0zM686 782c148-148 148-392 0-540s-392-148-540 0-148 392 0 540 392 148 540 0zM584 320l24 24-168 168 168 168-24 24-168-168-168 168-24-24 168-168-168-168 24-24 168 168z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-close-outline" + ], + "defaultCode": 62469, + "grid": 0 + }, + "properties": { + "id": 318, + "order": 319, + "ligatures": "", + "prevSize": 32, + "code": 62469, + "name": "ion-ios-close-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 317 + }, + { + "icon": { + "paths": [ + "M710 218c162 162 162 426 0 588s-426 162-588 0-162-426 0-588 426-162 588 0zM608 680l-168-168 168-168-24-24-168 168-168-168-24 24 168 168-168 168 24 24 168-168 168 168z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-close" + ], + "defaultCode": 62470, + "grid": 0 + }, + "properties": { + "id": 319, + "order": 320, + "ligatures": "", + "prevSize": 32, + "code": 62470, + "name": "ion-ios-close" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 318 + }, + { + "icon": { + "paths": [ + "M322 762l110 108v-484h32v484l110-108 24 24-150 146-148-146zM734 328c90 0 162 74 162 164s-74 164-164 164v0h-202v-32h202c74 0 132-60 132-132s-58-134-132-134h-30v-40c0-110-92-194-202-194-76 0-146 44-180 112l-12 28-28-14c-12-6-26-10-40-10-44 0-80 36-88 78l-2 18-18 6c-60 20-100 72-100 134 0 80 66 148 148 148h182v32h-182c-100 0-180-80-180-178 0-78 52-142 122-166 10-56 58-102 118-102 20 0 36 4 52 12 38-78 118-130 210-130 128 0 234 102 234 230 0 2-2 4-2 6z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-cloud-download-outline" + ], + "defaultCode": 62471, + "grid": 0 + }, + "properties": { + "id": 320, + "order": 321, + "ligatures": "", + "prevSize": 32, + "code": 62471, + "name": "ion-ios-cloud-download-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 319 + }, + { + "icon": { + "paths": [ + "M432 870v-214h32v214l110-108 24 24-150 146-148-146 22-24zM734 328c90 0 162 74 162 164s-74 164-164 164h-268v-270h-32v270h-252c-100 0-180-80-180-178 0-78 52-142 122-166 10-56 58-102 118-102 20 0 36 4 52 12 38-78 118-130 210-130 128 0 234 102 234 230 0 2-2 4-2 6z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-cloud-download" + ], + "defaultCode": 62472, + "grid": 0 + }, + "properties": { + "id": 321, + "order": 322, + "ligatures": "", + "prevSize": 32, + "code": 62472, + "name": "ion-ios-cloud-download" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 320 + }, + { + "icon": { + "paths": [ + "M734 466c90 0 162 74 162 166 0 90-74 168-164 168h-552c-100 0-180-84-180-184 0-80 52-142 122-166 10-56 58-104 118-104 20 0 36 4 52 12 38-78 118-134 210-134 128 0 234 106 234 234 0 2-2 6-2 8zM732 768c74 0 132-64 132-138s-58-134-132-134h-30v-42c0-112-92-198-202-198-76 0-146 46-180 116l-12 28-28-14c-12-6-26-10-40-10-44 0-80 34-88 78l-2 18-18 6c-60 20-100 74-100 138 0 82 66 152 148 152h552z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-cloud-outline" + ], + "defaultCode": 62473, + "grid": 0 + }, + "properties": { + "id": 322, + "order": 323, + "ligatures": "", + "prevSize": 32, + "code": 62473, + "name": "ion-ios-cloud-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 321 + }, + { + "icon": { + "paths": [ + "M322 520l-22-22 148-150 150 150-24 22-110-108v484h-32v-484zM734 368c90 0 162 78 162 170s-74 166-164 166v0h-202v-32h202c74 0 132-60 132-134s-58-140-132-140l-30-2v-40c0-112-92-198-202-198-76 0-146 46-180 116l-12 26-28-12c-12-6-26-10-40-10-44 0-80 34-88 78l-2 18-18 6c-60 20-100 78-100 142 0 82 66 150 148 150h182v32h-182c-100 0-180-80-180-180 0-80 52-148 122-172 10-56 58-104 118-104 20 0 36 4 52 12 38-78 118-132 210-132 128 0 234 104 234 232 0 2-2 6-2 8z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-cloud-upload-outline" + ], + "defaultCode": 62474, + "grid": 0 + }, + "properties": { + "id": 323, + "order": 324, + "ligatures": "", + "prevSize": 32, + "code": 62474, + "name": "ion-ios-cloud-upload-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 322 + }, + { + "icon": { + "paths": [ + "M432 896v-192h32v192h-32zM734 368c90 0 162 78 162 170s-74 166-164 166h-268v-292l110 108 24-22-150-150-148 150 22 22 110-108v292h-252c-100 0-180-80-180-180 0-80 52-148 122-172 10-56 58-104 118-104 20 0 36 4 52 12 38-78 118-132 210-132 128 0 234 104 234 232 0 2-2 6-2 8z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-cloud-upload" + ], + "defaultCode": 62475, + "grid": 0 + }, + "properties": { + "id": 324, + "order": 325, + "ligatures": "", + "prevSize": 32, + "code": 62475, + "name": "ion-ios-cloud-upload" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 323 + }, + { + "icon": { + "paths": [ + "M734 466c90 0 162 74 162 166 0 90-74 168-164 168h-552c-100 0-180-84-180-184 0-80 52-142 122-166 10-56 58-104 118-104 20 0 36 4 52 12 38-78 118-134 210-134 128 0 234 106 234 234 0 2-2 6-2 8z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-cloud" + ], + "defaultCode": 62476, + "grid": 0 + }, + "properties": { + "id": 325, + "order": 326, + "ligatures": "", + "prevSize": 32, + "code": 62476, + "name": "ion-ios-cloud" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 324 + }, + { + "icon": { + "paths": [ + "M250 448c-68 0-126 56-126 124v24s2 20 2 20c-10 0-24 2-28 2-38 6-66 36-66 74 0 20 6 38 20 52s32 22 52 22h314c54 0 98-44 98-98s-44-100-98-100c-4 0-8 2-12 2l-28 4-6-28c-6-28-22-52-44-70s-50-28-78-28zM250 416v0c74 0 136 52 152 122h16c72 0 130 58 130 130s-58 132-130 132h-314c-56 0-104-48-104-106 0-54 42-102 94-106v-16c0-86 70-156 156-156zM722 612c16 0 30-4 46-8-8 14-18 28-28 40-42 48-100 82-168 90 8-12 12-24 16-38 38-8 72-26 100-50-36-2-70-12-100-26-46-22-84-58-112-102-28-42-44-96-44-150 0-30 4-60 14-88-48 24-86 66-106 118-10-4-24-8-36-10 28-72 90-130 164-154 16-4 32-8 48-10-10 12-18 26-24 40-16 32-24 68-24 104 0 64 24 126 70 172s108 72 172 72h12z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-cloudy-night-outline" + ], + "defaultCode": 62477, + "grid": 0 + }, + "properties": { + "id": 326, + "order": 327, + "ligatures": "", + "prevSize": 32, + "code": 62477, + "name": "ion-ios-cloudy-night-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 325 + }, + { + "icon": { + "paths": [ + "M722 612c16 0 30-4 46-8-8 14-18 30-28 42-42 48-100 80-168 88h-6c8-20 14-42 14-64 0-44-18-86-48-116-28-30-66-46-106-48-12-32-32-58-58-80-20-16-40-26-64-34v-4c28-72 90-130 164-154 16-4 32-8 48-10-10 12-18 26-24 40-16 32-24 68-24 104 0 64 24 126 70 172s108 72 172 72h12zM250 418v0c74 0 136 52 152 122h16c72 0 130 58 130 130s-58 132-130 132h-314c-56 0-104-48-104-106 0-54 42-102 94-106v-14c0-86 70-158 156-158z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-cloudy-night" + ], + "defaultCode": 62478, + "grid": 0 + }, + "properties": { + "id": 327, + "order": 328, + "ligatures": "", + "prevSize": 32, + "code": 62478, + "name": "ion-ios-cloudy-night" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 326 + }, + { + "icon": { + "paths": [ + "M250 352c-68 0-126 56-126 124v24s2 20 2 20c-12 0-24 2-28 2-38 6-66 36-66 74 0 20 6 38 20 52s32 22 52 22h314c54 0 98-44 98-98s-44-100-98-100c-4 0-8 2-12 2l-28 4-6-28c-6-28-22-52-44-70s-50-28-78-28zM250 320v0c74 0 136 52 152 122h16c72 0 130 58 130 130s-58 132-130 132h-314c-56 0-104-48-104-106 0-54 42-102 94-106v-16c0-86 70-156 156-156z" + ], + "width": 548, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-cloudy-outline" + ], + "defaultCode": 62479, + "grid": 0 + }, + "properties": { + "id": 328, + "order": 329, + "ligatures": "", + "prevSize": 32, + "code": 62479, + "name": "ion-ios-cloudy-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 327 + }, + { + "icon": { + "paths": [ + "M250 320v0c74 0 136 52 152 122h16c72 0 130 58 130 130s-58 132-130 132h-314c-56 0-104-48-104-106 0-54 42-102 94-106v-16c0-86 70-156 156-156z" + ], + "width": 548, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-cloudy" + ], + "defaultCode": 62480, + "grid": 0 + }, + "properties": { + "id": 329, + "order": 330, + "ligatures": "", + "prevSize": 32, + "code": 62480, + "name": "ion-ios-cloudy" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 328 + }, + { + "icon": { + "paths": [ + "M768 546l-66 16-6 28 54 40-24 60-68-10-16 22 34 58-46 46-58-34-20 14 10 68-58 24-42-54-28 6-16 66h-64l-18-66-26-6-42 56-58-24 8-68-22-16-60 38-46-46 36-62-14-22-70 10-24-58 56-44-4-24-70-18v-64l70-18 4-24-58-44 24-60 72 10 14-20-38-64 44-44 64 38 22-16-8-70 58-26 44 58 24-4 18-70h64l18 70 24 4 44-56 58 24-10 70 22 16 60-36 44 46-34 60 14 20 70-10 24 60-56 42 6 26 66 18v64zM712 642l-52-40 12-66 64-16v-14l-64-16-12-66 52-38-6-14-64 10-38-54 34-56-10-12-56 34-56-36 10-68-12-4-40 52-64-12-16-66h-14l-18 66-64 12-40-54-14 6 10 68-56 36-18-12-42-24-10 10 36 60-36 54-66-10-6 14 54 40-12 64-66 16v14l66 18 12 64-54 40 6 12 66-8 36 54-34 58 10 12 58-36 56 36-10 66 14 6 38-54 66 14 16 62h16l14-62 66-14 40 52 14-6-10-64 52-36 56 32 10-10-32-54 38-56 64 8zM384 256c142 0 256 114 256 256s-114 256-256 256-256-114-256-256 114-256 256-256zM160 512c0 14 2 30 4 44l208-56 56-208c-14-2-30-4-44-4-60 0-116 24-158 66s-66 98-66 158zM384 736c54 0 106-20 146-54l-150-150-208 56c12 30 30 58 54 82 42 42 98 66 158 66zM552 660c36-40 56-94 56-148 0-60-24-116-66-158-24-24-52-44-84-54l-56 210z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-cog-outline" + ], + "defaultCode": 62481, + "grid": 0 + }, + "properties": { + "id": 330, + "order": 331, + "ligatures": "", + "prevSize": 32, + "code": 62481, + "name": "ion-ios-cog-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 329 + }, + { + "icon": { + "paths": [ + "M458 300c32 10 60 30 84 54 42 42 66 98 66 158 0 54-20 108-56 148l-150-150zM428 292l-56 208-208 56c-2-14-4-30-4-44 0-60 24-116 66-158s98-66 158-66c14 0 30 2 44 4zM172 588l208-56 150 150c-40 34-92 54-146 54-60 0-116-24-158-66-24-24-42-52-54-82zM768 546l-66 16-6 28 54 40-24 60-68-10-16 22 34 58-46 46-58-34-20 14 10 68-58 24-42-54-28 6-16 66h-64l-18-66-26-6-42 56-58-24 8-68-22-16-60 38-46-46 36-62-14-22-70 10-24-58 56-44-4-24-70-18v-64l70-18 4-24-58-44 24-60 72 10 14-20-38-64 44-44 64 38 22-16-8-70 58-26 44 58 24-4 18-70h64l18 70 24 4 44-56 58 24-10 70 22 16 60-36 44 46-34 60 14 20 70-10 24 60-56 42 6 26 66 18v64zM384 768c142 0 256-114 256-256s-114-256-256-256-256 114-256 256 114 256 256 256z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-cog" + ], + "defaultCode": 62482, + "grid": 0 + }, + "properties": { + "id": 331, + "order": 332, + "ligatures": "", + "prevSize": 32, + "code": 62482, + "name": "ion-ios-cog" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 330 + }, + { + "icon": { + "paths": [ + "M604 424c94 26 164 114 164 216 0 124-100 224-224 224-62 0-120-26-160-68-40 42-98 68-160 68-124 0-224-100-224-224 0-102 70-190 164-216-2-14-4-26-4-40 0-124 100-224 224-224s224 100 224 224c0 14-2 26-4 40zM192 384c0 12 0 24 2 34 10-2 20-2 30-2 62 0 120 26 160 68 40-42 98-68 160-68 10 0 20 0 30 2 2-10 2-22 2-34 0-106-86-192-192-192s-192 86-192 192zM416 640c0-12 0-24-2-34-10 2-20 2-30 2s-20 0-30-2c-2 10-2 22-2 34 0 40 12 76 32 106 20-30 32-66 32-106zM384 576c6 0 14-2 20-2-6-14-12-28-20-40-8 12-14 26-20 40 6 0 14 2 20 2zM332 568c8-22 18-42 32-60-36-36-86-60-140-60-6 0-14 2-20 2 20 58 68 102 128 118zM404 508c14 18 24 38 32 60 60-16 108-60 128-118-6 0-14-2-20-2-54 0-104 24-140 60zM224 832c54 0 104-24 140-60-28-38-44-82-44-132 0-14 2-26 4-40-72-20-128-74-152-144-80 22-140 96-140 184 0 106 86 192 192 192zM544 832c106 0 192-86 192-192 0-88-60-162-140-184-24 70-80 124-152 144 2 14 4 26 4 40 0 50-16 94-44 132 36 36 86 60 140 60z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-color-filter-outline" + ], + "defaultCode": 62483, + "grid": 0 + }, + "properties": { + "id": 332, + "order": 333, + "ligatures": "", + "prevSize": 32, + "code": 62483, + "name": "ion-ios-color-filter-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 331 + }, + { + "icon": { + "paths": [ + "M604 424c94 26 164 114 164 216 0 124-100 224-224 224-62 0-120-26-160-68-40 42-98 68-160 68-124 0-224-100-224-224 0-102 70-190 164-216-2-14-4-26-4-40 0-124 100-224 224-224s224 100 224 224c0 14-2 26-4 40zM384 790l2 4c6-6 12-14 18-22 28-38 44-82 44-132 0-14-2-26-4-40 72-20 128-74 152-144 4-10 6-20 8-30-2 0-4-2-6-2v-2c-8-2-16-2-24-4-10-2-20-2-30-2-62 0-120 26-160 68-40-42-98-68-160-68-10 0-20 0-30 2-8 2-16 2-24 4v2c-2 0-4 2-6 2 2 10 4 20 8 30 24 70 80 124 152 144-2 14-4 26-4 40 0 50 16 94 44 132 6 8 12 16 18 22zM414 606c2 10 2 22 2 34 0 40-12 76-32 106-20-30-32-66-32-106 0-12 0-24 2-34 10 2 20 2 30 2s20 0 30-2zM564 450c-20 58-68 102-128 118-8-22-18-42-32-60 36-36 86-60 140-60 6 0 14 2 20 2zM404 574c-6 0-14 2-20 2s-14-2-20-2c6-14 12-28 20-40 8 12 14 26 20 40zM224 448c54 0 104 24 140 60-14 18-24 38-32 60-60-16-108-60-128-118 6 0 14-2 20-2z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-color-filter" + ], + "defaultCode": 62484, + "grid": 0 + }, + "properties": { + "id": 333, + "order": 334, + "ligatures": "", + "prevSize": 32, + "code": 62484, + "name": "ion-ios-color-filter" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 332 + }, + { + "icon": { + "paths": [ + "M256 300l512 512-68 68-512-512zM298 432l402 402 22-22-402-404zM240 208v-80h32v80h-32zM240 616v-80h32v80h-32zM432 384v-32h80v32h-80zM0 384v-32h80v32h-80zM94 188l58 58-24 22-56-56zM152 500l-58 56-22-22 56-56zM440 212l-56 56-24-22 58-58z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-color-wand-outline" + ], + "defaultCode": 62485, + "grid": 0 + }, + "properties": { + "id": 334, + "order": 335, + "ligatures": "", + "prevSize": 32, + "code": 62485, + "name": "ion-ios-color-wand-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 333 + }, + { + "icon": { + "paths": [ + "M280 318l512 514-68 68-512-514zM248 252v-128h64v128h-64zM248 660v-128h64v128h-64zM432 420v-64h128v64h-128zM492 224l-90 90-46-44 90-92zM68 224l46-46 90 92-46 44zM68 558l90-90 46 44-90 92zM0 420v-64h128v64h-128z" + ], + "width": 792, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-color-wand" + ], + "defaultCode": 62486, + "grid": 0 + }, + "properties": { + "id": 335, + "order": 336, + "ligatures": "", + "prevSize": 32, + "code": 62486, + "name": "ion-ios-color-wand" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 334 + }, + { + "icon": { + "paths": [ + "M608 832v-416l32-32v480h-640v-608h512l-32 32h-448v544h576zM348 568l342-342 22 22-360 360h-64v-64l360-360 22 22-342 342zM760 160c4 6 8 12 8 20s-4 14-8 20l-24 24-64-64 24-24c6-4 12-8 20-8s14 4 20 8z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-compose-outline" + ], + "defaultCode": 62487, + "grid": 0 + }, + "properties": { + "id": 336, + "order": 337, + "ligatures": "", + "prevSize": 32, + "code": 62487, + "name": "ion-ios-compose-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 335 + }, + { + "icon": { + "paths": [ + "M384 640l256-256v480h-640v-608h512l-256 256v128h128zM648 184l64 64-360 360h-64v-64zM760 160c4 6 8 12 8 20s-4 14-8 20l-24 24-64-64 24-24c6-4 12-8 20-8s14 4 20 8z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-compose" + ], + "defaultCode": 62488, + "grid": 0 + }, + "properties": { + "id": 337, + "order": 338, + "ligatures": "", + "prevSize": 32, + "code": 62488, + "name": "ion-ios-compose" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 336 + }, + { + "icon": { + "paths": [ + "M416 96c230 0 416 186 416 416s-186 416-416 416-416-186-416-416 186-416 416-416zM416 130c-210 0-382 172-382 382 0 94 34 178 90 244 36-16 124-48 180-64 4-2 6 0 6-20 0-22-2-36-8-48-8-16-14-40-18-62-8-10-20-30-28-66-6-32-2-44 2-56v-4c2-8 0-46-6-76-4-20 2-68 30-104 18-24 54-52 116-56h36c64 4 98 32 116 56 28 36 34 84 30 104-6 30-8 68-6 76 0 0 2 2 2 4 4 12 6 24 0 56-8 36-20 54-28 64-4 22-10 48-18 64-6 14-12 30-12 46 0 20 0 20 4 22 54 16 146 48 186 64 56-66 90-152 90-244 0-210-172-382-382-382z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-contact-outline" + ], + "defaultCode": 62489, + "grid": 0 + }, + "properties": { + "id": 338, + "order": 339, + "ligatures": "", + "prevSize": 32, + "code": 62489, + "name": "ion-ios-contact-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 337 + }, + { + "icon": { + "paths": [ + "M416 96c230 0 416 186 416 416s-186 416-416 416-416-186-416-416 186-416 416-416zM416 894c118 0 222-54 292-138-40-16-132-48-186-64-4-2-6-2-6-22 0-16 8-32 14-46 8-16 14-42 18-64 8-10 20-28 28-64 6-32 4-44 0-56 0 0-2-2-2-4-2-8 0-46 6-76 4-20-2-68-30-104-18-24-52-52-116-56h-36c-62 4-98 32-116 56-28 36-34 84-30 104 6 30 8 68 6 76v4c-4 12-8 24-2 56 8 36 20 56 28 66 4 22 10 46 18 62 6 12 8 26 8 48 0 20-2 18-6 20-56 16-144 48-180 64 70 84 174 138 292 138z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-contact" + ], + "defaultCode": 62490, + "grid": 0 + }, + "properties": { + "id": 339, + "order": 340, + "ligatures": "", + "prevSize": 32, + "code": 62490, + "name": "ion-ios-contact" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 338 + }, + { + "icon": { + "paths": [ + "M384 192v128h128v32h-160v-160h32zM426 128l150 150v522h-96v96h-480v-672h96v-96h330zM448 864v-64h-352v-544h-64v608h416zM544 768v-476l-130-132h-286v608h416z" + ], + "width": 576, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-copy-outline" + ], + "defaultCode": 62491, + "grid": 0 + }, + "properties": { + "id": 340, + "order": 341, + "ligatures": "", + "prevSize": 32, + "code": 62491, + "name": "ion-ios-copy-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 339 + }, + { + "icon": { + "paths": [ + "M64 832h416v64h-480v-672h64v608zM426 128l150 150v522h-480v-672h330zM512 352v-32h-128v-128h-32v160h160z" + ], + "width": 576, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-copy" + ], + "defaultCode": 62492, + "grid": 0 + }, + "properties": { + "id": 341, + "order": 342, + "ligatures": "", + "prevSize": 32, + "code": 62492, + "name": "ion-ios-copy" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 340 + }, + { + "icon": { + "paths": [ + "M128 224v-96h64v96h-64zM192 704h352v64h-416v-416h64v352zM672 768v-64h96v64h-96zM0 256h640v640h-64v-576h-576v-64z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-crop-strong" + ], + "defaultCode": 62493, + "grid": 0 + }, + "properties": { + "id": 342, + "order": 343, + "ligatures": "", + "prevSize": 32, + "code": 62493, + "name": "ion-ios-crop-strong" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 341 + }, + { + "icon": { + "paths": [ + "M128 224v-96h32v96h-32zM160 736h416v32h-448v-448h32v416zM672 768v-32h96v32h-96zM0 256h640v640h-32v-608h-608v-32z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-crop" + ], + "defaultCode": 62494, + "grid": 0 + }, + "properties": { + "id": 343, + "order": 344, + "ligatures": "", + "prevSize": 32, + "code": 62494, + "name": "ion-ios-crop" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 342 + }, + { + "icon": { + "paths": [ + "M384 288h256v608h-640v-608h256v32h-224v544h576v-544h-224v-32zM194 504l110 110v-486h32v486l110-110 22 24-148 148-148-148z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-download-outline" + ], + "defaultCode": 62495, + "grid": 0 + }, + "properties": { + "id": 344, + "order": 345, + "ligatures": "", + "prevSize": 32, + "code": 62495, + "name": "ion-ios-download-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 343 + }, + { + "icon": { + "paths": [ + "M336 288h304v608h-640v-608h304v326l-110-110-22 24 148 148 148-148-22-24-110 110v-326zM304 288v-160h32v160h-32z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-download" + ], + "defaultCode": 62496, + "grid": 0 + }, + "properties": { + "id": 345, + "order": 346, + "ligatures": "", + "prevSize": 32, + "code": 62496, + "name": "ion-ios-download" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 344 + }, + { + "icon": { + "paths": [ + "M0 640v-32h704v32h-704zM0 528v-32h704v32h-704zM0 416v-32h704v32h-704z" + ], + "width": 704, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-drag" + ], + "defaultCode": 62497, + "grid": 0 + }, + "properties": { + "id": 346, + "order": 347, + "ligatures": "", + "prevSize": 32, + "code": 62497, + "name": "ion-ios-drag" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 345 + }, + { + "icon": { + "paths": [ + "M0 256h768v512h-768v-512zM384 536l326-248h-652zM32 736h704v-428l-230 176 136 154-4 4-158-140-96 74-96-74-158 140-4-4 136-154-230-176v428z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-email-outline" + ], + "defaultCode": 62498, + "grid": 0 + }, + "properties": { + "id": 347, + "order": 348, + "ligatures": "", + "prevSize": 32, + "code": 62498, + "name": "ion-ios-email-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 346 + }, + { + "icon": { + "paths": [ + "M768 768h-768v-484l262 200-136 154 4 4 158-140 96 74 96-74 158 140 4-4-136-154 262-200v484zM752 256l-368 280-368-280h736z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-email" + ], + "defaultCode": 62499, + "grid": 0 + }, + "properties": { + "id": 348, + "order": 349, + "ligatures": "", + "prevSize": 32, + "code": 62499, + "name": "ion-ios-email" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 347 + }, + { + "icon": { + "paths": [ + "M766 512l2 2-12 12c-42 42-94 96-156 138-72 48-144 72-216 72-166 0-260-98-370-210l-14-14 2-2c78-80 134-128 188-162 64-40 126-60 194-60 166 0 292 120 382 224zM384 320c-124 0-222 72-340 192 48 48 96 100 152 136 60 40 120 56 188 56 150 0 266-112 342-190-52-58-100-100-148-132-64-42-128-62-194-62zM384 672c-88 0-160-72-160-160s72-160 160-160 160 72 160 160-72 160-160 160zM384 384c-70 0-128 58-128 128s58 128 128 128 128-58 128-128-58-128-128-128zM448 512h32c0 52-44 96-96 96s-96-42-96-96 44-96 96-96v32c-32 0-64 26-64 62s30 66 64 66 64-28 64-64v0z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-eye-outline" + ], + "defaultCode": 62500, + "grid": 0 + }, + "properties": { + "id": 349, + "order": 350, + "ligatures": "", + "prevSize": 32, + "code": 62500, + "name": "ion-ios-eye-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 348 + }, + { + "icon": { + "paths": [ + "M766 512l2 2-12 12c-42 42-94 96-156 138-72 48-144 72-216 72-166 0-260-98-370-210l-14-14 2-2c78-80 134-128 188-162 64-40 126-60 194-60 166 0 292 120 382 224zM384 672c88 0 160-72 160-160s-72-160-160-160-160 72-160 160 72 160 160 160zM372 454c0 38 32 70 70 70 14 0 28-4 38-12v0c0 54-44 96-96 96s-96-42-96-96 44-96 96-96c-8 10-12 24-12 38z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-eye" + ], + "defaultCode": 62501, + "grid": 0 + }, + "properties": { + "id": 350, + "order": 351, + "ligatures": "", + "prevSize": 32, + "code": 62501, + "name": "ion-ios-eye" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 349 + }, + { + "icon": { + "paths": [ + "M32 310v404l368-202zM480 312v0 400l352-200zM448 256v0l448 256-448 256v-246l-448 246v-512l448 246v-246z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-fastforward-outline" + ], + "defaultCode": 62502, + "grid": 0 + }, + "properties": { + "id": 351, + "order": 352, + "ligatures": "", + "prevSize": 32, + "code": 62502, + "name": "ion-ios-fastforward-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 350 + }, + { + "icon": { + "paths": [ + "M448 256v0l448 256-448 256v-246l-448 246v-512l448 246v-246z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-fastforward" + ], + "defaultCode": 62503, + "grid": 0 + }, + "properties": { + "id": 352, + "order": 353, + "ligatures": "", + "prevSize": 32, + "code": 62503, + "name": "ion-ios-fastforward" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 351 + }, + { + "icon": { + "paths": [ + "M576 256l128 192v320h-704v-320l128-192h448zM666 448l-90-136v136h90zM160 288v160h96c0 52 44 96 96 96s96-44 96-96h96v-160h-384zM128 312l-90 136h90v-136zM672 736v-256h-196c-14 56-64 96-124 96s-110-40-124-96h-196v256h640z" + ], + "width": 704, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-filing-outline" + ], + "defaultCode": 62504, + "grid": 0 + }, + "properties": { + "id": 353, + "order": 354, + "ligatures": "", + "prevSize": 32, + "code": 62504, + "name": "ion-ios-filing-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 352 + }, + { + "icon": { + "paths": [ + "M352 576c60 0 110-40 124-96h228v288h-704v-288h228c14 56 64 96 124 96zM128 448h-128l128-192v160h32v-160h384v160h32v-160l128 192h-256c0 52-44 96-96 96s-96-44-96-96h-128z" + ], + "width": 704, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-filing" + ], + "defaultCode": 62505, + "grid": 0 + }, + "properties": { + "id": 354, + "order": 355, + "ligatures": "", + "prevSize": 32, + "code": 62505, + "name": "ion-ios-filing" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 353 + }, + { + "icon": { + "paths": [ + "M0 176h800v672h-800v-672zM144 816v-96h-112v96h112zM144 688v-96h-112v96h112zM144 560v-96h-112v96h112zM144 432v-96h-112v96h112zM144 304v-96h-112v96h112zM624 816v-288h-448v288h448zM624 496v-288h-448v288h448zM768 816v-96h-112v96h112zM768 688v-96h-112v96h112zM768 560v-96h-112v96h112zM768 432v-96h-112v96h112zM768 304v-96h-112v96h112z" + ], + "width": 800, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-film-outline" + ], + "defaultCode": 62506, + "grid": 0 + }, + "properties": { + "id": 355, + "order": 356, + "ligatures": "", + "prevSize": 32, + "code": 62506, + "name": "ion-ios-film-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 354 + }, + { + "icon": { + "paths": [ + "M0 176h800v672h-800v-672zM144 816v-96h-112v96h112zM144 688v-96h-112v96h112zM144 560v-96h-112v96h112zM144 432v-96h-112v96h112zM144 304v-96h-112v96h112zM624 528v-32h-448v32h448zM768 816v-96h-112v96h112zM768 688v-96h-112v96h112zM768 560v-96h-112v96h112zM768 432v-96h-112v96h112zM768 304v-96h-112v96h112z" + ], + "width": 800, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-film" + ], + "defaultCode": 62507, + "grid": 0 + }, + "properties": { + "id": 356, + "order": 357, + "ligatures": "", + "prevSize": 32, + "code": 62507, + "name": "ion-ios-film" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 355 + }, + { + "icon": { + "paths": [ + "M480 224c12-2 22-2 32-4v346c-10 2-20 2-32 4-22 2-48 6-78 6-50 0-94-8-138-18s-84-26-128-26c-60 0-92 10-104 14v286h-32v-612l6-6c4-2 36-22 130-22 48 0 90 8 134 18 42 8 84 22 130 22 30 0 58-6 80-8zM480 538v0-282c-22 2-50 8-80 8-50 0-92-12-136-22s-84-18-128-18c-60 0-92 10-104 14v274c20-6 52-12 104-12 48 0 90 16 134 26 42 8 86 18 132 18 30 0 56-4 78-6z" + ], + "width": 512, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-flag-outline" + ], + "defaultCode": 62508, + "grid": 0 + }, + "properties": { + "id": 357, + "order": 358, + "ligatures": "", + "prevSize": 32, + "code": 62508, + "name": "ion-ios-flag-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 356 + }, + { + "icon": { + "paths": [ + "M480 224c12-2 22-2 32-4v346c-10 2-20 2-32 4-22 2-48 6-78 6-50 0-94-8-138-18s-84-26-128-26c-60 0-92 10-104 14v286h-32v-612l6-6c4-2 36-22 130-22 48 0 90 8 134 18 42 8 84 22 130 22 30 0 58-6 80-8z" + ], + "width": 512, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-flag" + ], + "defaultCode": 62509, + "grid": 0 + }, + "properties": { + "id": 358, + "order": 359, + "ligatures": "", + "prevSize": 32, + "code": 62509, + "name": "ion-ios-flag" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 357 + }, + { + "icon": { + "paths": [ + "M192 64c174 128 340 358 318 576-26 268-208 320-254 320s-254-80-256-320c-2-292 244-286 192-576zM256 944c0 0 80-72 80-160s-80-160-80-160-82 72-82 160 82 160 82 160zM478 636c10-94-20-198-82-302-44-72-100-140-166-198 0 114-48 182-98 246-52 68-100 130-100 258 0 50 10 96 30 136 16 34 40 64 70 90 16 14 32 24 46 32-18-32-36-70-36-114 0-102 88-180 92-184l22-18 22 18c4 4 90 82 90 184 0 46-18 88-38 120 14-8 26-16 40-28 28-24 50-54 68-88 22-42 34-94 40-152z" + ], + "width": 512, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-flame-outline" + ], + "defaultCode": 62510, + "grid": 0 + }, + "properties": { + "id": 359, + "order": 360, + "ligatures": "", + "prevSize": 32, + "code": 62510, + "name": "ion-ios-flame-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 358 + }, + { + "icon": { + "paths": [ + "M192 64c174 128 340 358 318 576-26 268-208 320-254 320s-254-80-256-320c-2-292 244-286 192-576zM256 944c0 0 80-72 80-160s-80-160-80-160-82 72-82 160 82 160 82 160z" + ], + "width": 512, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-flame" + ], + "defaultCode": 62511, + "grid": 0 + }, + "properties": { + "id": 360, + "order": 361, + "ligatures": "", + "prevSize": 32, + "code": 62511, + "name": "ion-ios-flame" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 359 + }, + { + "icon": { + "paths": [ + "M746 740c16 32 22 64 22 92-2 72-54 128-126 128h-512c-72 0-128-54-130-128 0-28 8-60 24-92l232-390v-254h-32v-32h64v64h96v32h-96v64h64v32h-64v64h96v32h-96v6l-4 8-30 50h98v32h-116l-184 308c-26 50-28 86-4 126 18 28 46 46 82 46h512c34 0 66-16 82-44 10-16 12-34 12-52 0-24-4-50-18-76l-232-390-6-8v-294h64v32h-32v254zM88 750l144-238h306l144 238c14 22 20 48 20 66-2 48-32 80-92 80h-452c-60 0-92-24-92-80 0-18 8-44 22-66zM520 544h-270l-134 222c-10 16-18 38-18 50 0 26 10 34 12 36 8 8 26 12 48 12h452c20 0 36-6 46-14 8-8 14-20 14-36 0-12-6-32-16-48v0 0z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-flask-outline" + ], + "defaultCode": 62512, + "grid": 0 + }, + "properties": { + "id": 361, + "order": 362, + "ligatures": "", + "prevSize": 32, + "code": 62512, + "name": "ion-ios-flask-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 360 + }, + { + "icon": { + "paths": [ + "M654 766v0c10 16 16 36 16 48 0 16-6 28-14 36-10 8-26 14-46 14h-452c-22 0-40-4-48-12-2-2-12-10-12-36 0-12 8-34 18-50v0 0l134-222h270l134 222zM746 740c16 32 22 64 22 92-2 72-54 128-126 128h-512c-72 0-128-54-130-128 0-28 8-60 24-92l232-390v-254h-32v-32h320v32h-32v254zM288 128v32h96v-32h-96zM288 224v32h64v-32h-64zM288 320v32h96v-32h-96zM254 416l-18 32h116v-32h-98zM702 816c0-18-6-44-20-66l-144-238h-308l-142 238c-14 22-22 48-22 66 0 56 32 80 92 80h452c60 0 90-32 92-80z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-flask" + ], + "defaultCode": 62513, + "grid": 0 + }, + "properties": { + "id": 362, + "order": 363, + "ligatures": "", + "prevSize": 32, + "code": 62513, + "name": "ion-ios-flask" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 361 + }, + { + "icon": { + "paths": [ + "M726 568c-58 0-130-14-186-28-2 6-4 12-8 18 50 30 112 72 152 112 80 80 106 136 82 160-6 6-14 8-24 8-30 0-76-30-136-90-40-40-82-102-112-152-6 4-14 6-20 8 14 56 30 128 30 186 0 112-24 170-56 170s-56-58-56-170c0-58 16-130 30-186-6-2-14-4-20-8-30 50-72 112-112 152-60 60-106 90-136 90-10 0-18-2-24-8-24-24 2-80 82-160 40-40 102-82 152-112-4-6-6-12-8-18-56 14-128 28-186 28-112 0-170-24-170-56s58-56 170-56c58 0 130 16 186 30 2-6 4-14 8-20-50-30-112-70-152-110-80-80-106-136-82-160 6-6 14-8 24-8 30 0 76 28 136 88 40 40 82 102 112 152 6-4 14-6 20-8-14-56-30-128-30-186 0-112 24-170 56-170s56 58 56 170c0 58-16 130-30 186 6 2 14 4 20 8 30-50 72-112 112-152 60-60 106-88 136-88 10 0 18 2 24 8 24 24-2 80-82 160-40 40-102 80-152 110 4 6 6 14 8 20 56-14 128-30 186-30 112 0 170 24 170 56s-58 56-170 56zM576 510v6c60 14 112 20 150 20 42 0 78-4 104-10 20-6 28-12 32-14-4-2-12-8-32-14-26-6-62-10-104-10-38 0-90 8-150 22zM628 298c-28 28-60 70-92 122l4 4c52-32 94-64 122-92 30-30 52-56 66-80 10-18 14-28 14-32-8 0-44 8-114 78zM356 424l4-4c-32-52-64-94-92-122-70-70-106-78-114-78 0 4 4 14 14 32 14 24 36 50 66 80 28 28 70 60 122 92zM170 536c38 0 90-6 150-20v-6c-60-14-112-22-150-22-42 0-78 4-104 10-20 6-28 12-32 14 4 2 10 8 30 14 26 6 64 10 106 10zM268 726c28-28 60-70 92-122l-4-4c-52 32-94 64-122 92-30 30-52 58-66 82-10 18-14 28-14 32 8 0 44-10 114-80zM540 600l-4 4c32 52 64 94 92 122 70 70 106 80 114 80 0-4-4-14-14-32-14-24-36-52-66-82-28-28-70-60-122-92zM434 130c-6 26-10 62-10 104 0 38 8 90 22 150h4c14-60 22-112 22-150 0-42-4-78-10-104-6-20-12-28-14-32-2 4-8 12-14 32zM462 896c6-26 10-64 10-106 0-38-8-90-22-150h-4c-14 60-22 112-22 150 0 42 4 80 10 106 6 20 12 26 14 30 2-4 8-10 14-30zM448 576c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM626 812c20 68 14 106-10 116-4 2-6 2-10 2-22 0-50-26-74-70 10-70-4-152-4-152s48 68 98 104zM604 898c2-8 4-28-6-68-10-8-20-18-30-28 0 18 0 34-2 50 20 32 32 44 38 46zM364 166c-12 70 2 150 2 150s-54-70-96-102c-20-70-14-108 10-118 4-2 6-2 10-2 22 0 48 24 74 72zM328 222c0-18 0-34 2-50-20-32-32-42-38-44-2 8-4 28 6 68 10 8 20 16 30 26zM100 598c70 8 152-4 152-4s-68 48-102 96c-24 8-52 12-70 12-26 0-42-8-48-22-10-22 14-50 68-82zM132 662c8-10 16-20 26-30-18 0-34 0-50-2-32 20-42 32-44 38 2 0 8 2 16 2 14 0 32-2 52-8zM864 344c10 22-14 52-68 84-70-10-152 4-152 4s66-50 102-98c26-8 52-10 70-10 26 0 42 6 48 20zM788 396c32-20 42-32 44-38-2 0-8-2-16-2-14 0-32 2-52 8-8 10-16 18-26 28 18 0 34 2 50 4zM262 818c62-48 106-110 106-110s-14 78-6 142c-30 52-56 78-78 78-4 0-8 0-12-2-22-10-26-48-10-108zM286 894c8-4 24-16 44-52 0-12-2-26-2-40-12 12-26 24-38 34-8 36-6 52-4 58zM624 100c22 10 26 44 10 108-58 42-106 110-106 110s16-96 6-142c26-50 56-78 78-78 4 0 8 0 12 2zM606 190c10-36 6-54 4-60-8 4-24 16-44 52 0 12 2 28 2 42 12-12 26-24 38-34zM142 326c36 48 110 106 110 106s-80-14-140-6c-56-30-86-64-76-88 6-14 20-22 44-22 16 0 42 2 62 10zM66 350c4 8 16 24 52 44 12 0 26-2 40-2-12-12-24-24-34-36-16-4-32-8-44-8-8 0-12 2-14 2zM784 598c60 34 86 66 76 90-6 14-20 20-44 20-16 0-38-2-62-10-40-54-110-104-110-104s90 16 140 4zM816 676c8 0 12-2 14-2-4-8-16-24-52-44-12 0-26 2-40 2 12 12 24 26 34 38 16 4 32 6 44 6z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-flower-outline" + ], + "defaultCode": 62514, + "grid": 0 + }, + "properties": { + "id": 363, + "order": 364, + "ligatures": "", + "prevSize": 32, + "code": 62514, + "name": "ion-ios-flower-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 362 + }, + { + "icon": { + "paths": [ + "M726 456c112 0 170 24 170 56s-58 56-170 56c-58 0-130-14-186-28-2 6-4 12-8 18 50 30 112 72 152 112 80 80 106 136 82 160s-80-2-160-82c-40-40-82-102-112-152-6 4-14 6-20 8 14 56 30 128 30 186 0 112-24 170-56 170s-56-58-56-170c0-58 16-130 30-186-6-2-14-4-20-8-30 50-72 112-112 152-80 80-136 106-160 82s2-80 82-160c40-40 102-82 152-112-4-6-6-12-8-18-56 14-128 28-186 28-112 0-170-24-170-56s58-56 170-56c58 0 130 16 186 30 2-6 4-14 8-20-50-30-112-70-152-110-80-80-106-136-82-160s80 0 160 80c40 40 82 102 112 152 6-4 12-6 18-8-14-56-28-128-28-186 0-112 24-170 56-170s56 58 56 170c0 58-14 130-28 186 6 2 12 4 18 8 30-50 72-112 112-152 80-80 136-104 160-80s-2 80-82 160c-40 40-102 80-152 110 4 6 6 14 8 20 56-14 128-30 186-30zM528 708c0 0 48 68 98 104 20 68 14 106-10 116-4 2-6 2-10 2-22 0-50-26-74-70 10-70-4-152-4-152zM366 316c0 0-54-70-96-102-20-70-14-108 10-118 4-2 6-2 10-2 22 0 48 24 74 72-12 70 2 150 2 150zM252 594c0 0-68 48-102 96-24 8-52 12-70 12-26 0-42-8-48-22-10-22 14-50 68-82 70 8 152-4 152-4zM644 432c0 0 66-50 102-98 26-8 52-10 70-10 26 0 42 6 48 20 10 22-14 52-68 84-70-10-152 4-152 4zM262 818c62-48 106-110 106-110s-14 78-6 142c-30 52-56 78-78 78-4 0-8 0-12-2-22-10-26-48-10-108zM634 208c-58 42-106 110-106 110s16-96 6-142c26-50 56-78 78-78 4 0 8 0 12 2 22 10 26 44 10 108zM112 426c-56-30-86-64-76-88 6-14 20-22 44-22 16 0 42 2 62 10 36 48 110 106 110 106s-80-14-140-6zM784 598c60 34 86 66 76 90-6 14-20 20-44 20-16 0-38-2-62-10-40-54-110-104-110-104s90 16 140 4z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-flower" + ], + "defaultCode": 62515, + "grid": 0 + }, + "properties": { + "id": 364, + "order": 365, + "ligatures": "", + "prevSize": 32, + "code": 62515, + "name": "ion-ios-flower" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 363 + }, + { + "icon": { + "paths": [ + "M850 192c26 0 46 20 46 46v608c0 28-20 50-46 50h-800c-26 0-50-24-50-50v-672c0-26 22-46 50-46h224c16 0 24 4 34 14v0l46 46c4 4 6 4 12 4h484zM50 160c-8 0-18 6-18 14v148c6-2 10-2 16-2h800c6 0 10 0 16 2v-84c0-8-6-14-14-14h-484c-14 0-24-4-34-14l-46-46c-4-4-6-4-12-4h-224zM864 846v-478c0-8-8-16-16-16h-800c-8 0-16 8-16 16v478c0 8 10 18 18 18h800c8 0 14-10 14-18z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-folder-outline" + ], + "defaultCode": 62516, + "grid": 0 + }, + "properties": { + "id": 365, + "order": 366, + "ligatures": "", + "prevSize": 32, + "code": 62516, + "name": "ion-ios-folder-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 364 + }, + { + "icon": { + "paths": [ + "M880 352c8 0 16 8 16 16v478c0 28-20 50-46 50h-800c-26 0-50-24-50-50v-478c0-8 8-16 16-16h864zM850 192c26 0 46 20 46 46v84c-6-2-10-2-16-2h-864c-6 0-10 0-16 2v-148c0-26 22-46 50-46h224c16 0 24 4 34 14v0l46 46c4 4 6 4 12 4h484z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-folder" + ], + "defaultCode": 62517, + "grid": 0 + }, + "properties": { + "id": 366, + "order": 367, + "ligatures": "", + "prevSize": 32, + "code": 62517, + "name": "ion-ios-folder" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 365 + }, + { + "icon": { + "paths": [ + "M416 96c230 0 416 186 416 416s-186 416-416 416-416-186-416-416 186-416 416-416zM498 884c6-2 10-2 16-4l48-128-40-78v-2h-212l-40 78 50 130c4 2 10 2 14 4 24 6 50 10 76 10 28 0 60-4 88-10zM82 328c-30 54-46 114-48 178l86-74zM284 154c-72 28-136 76-180 138l44 128 10 4 98 46 142-120v-116zM554 494l-140-116-138 116v2l36 144h208l36-144zM798 506c-2-64-18-126-48-180l-38 106zM728 292c-44-62-108-112-180-138l-116 80v116l142 120 108-48zM36 546c6 68 30 132 66 184l140 2 42-78-40-154-2-2-98-44zM590 732l140-2c36-52 60-116 66-184l-108-92-100 46-40 154zM414 206l94-64c-30-8-60-12-92-12s-64 4-94 12zM236 764l-108-2c40 46 92 84 150 106l-40-100zM554 868c58-22 110-60 150-106l-112 2-4 6z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-football-outline" + ], + "defaultCode": 62518, + "grid": 0 + }, + "properties": { + "id": 367, + "order": 368, + "ligatures": "", + "prevSize": 32, + "code": 62518, + "name": "ion-ios-football-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 366 + }, + { + "icon": { + "paths": [ + "M416 96c230 0 416 186 416 416s-186 416-416 416-416-186-416-416 186-416 416-416zM498 884c6-2 10-2 16-4l48-128-40-78v-2h-212l-40 78 50 130c4 2 10 2 14 4 24 6 50 10 76 10 28 0 60-4 88-10zM284 154c-72 28-136 76-180 138l44 128 10 4 98 46 142-120v-116zM728 292c-44-62-108-112-180-138l-116 80v116l142 120 108-48zM36 546c6 68 30 132 66 184l140 2 42-78-40-154-2-2-98-44zM590 732l140-2c36-52 60-116 66-184l-108-92-100 46-40 154z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-football" + ], + "defaultCode": 62519, + "grid": 0 + }, + "properties": { + "id": 368, + "order": 369, + "ligatures": "", + "prevSize": 32, + "code": 62519, + "name": "ion-ios-football" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 367 + }, + { + "icon": { + "paths": [ + "M326 480c6 0 10 4 10 10v44c0 6-4 10-10 10h-70v70c0 6-6 10-12 10h-42c-6 0-10-4-10-10v-70h-70c-6 0-10-6-10-12v-42c0-6 4-10 10-10h70v-70c0-6 4-10 10-10h44c6 0 10 4 10 10v70h70zM660 558c22 0 40 16 40 38s-18 38-40 38-38-16-38-38 16-38 38-38zM576 474c22 0 38 16 38 38s-16 38-38 38-40-16-40-38 18-38 40-38zM746 474c22 0 38 16 38 38s-16 38-38 38-40-16-40-38 18-38 40-38zM660 390c22 0 40 16 40 38s-18 40-40 40-38-18-38-40 16-38 38-38zM674 324h-452c-52 0-98 18-134 52s-56 82-56 134 20 102 56 136 82 54 134 54h452c52 0 98-20 134-54s56-84 56-136-20-100-56-134-82-52-134-52zM674 292v0c122 0 222 90 222 218s-100 222-222 222h-452c-122 0-222-94-222-222s100-218 222-218h452z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-game-controller-a-outline" + ], + "defaultCode": 62520, + "grid": 0 + }, + "properties": { + "id": 369, + "order": 370, + "ligatures": "", + "prevSize": 32, + "code": 62520, + "name": "ion-ios-game-controller-a-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 368 + }, + { + "icon": { + "paths": [ + "M674 292c122 0 222 90 222 218s-100 222-222 222h-452c-122 0-222-94-222-222s100-218 222-218h452zM336 534v0-44c0-6-4-10-10-10h-70v-70c0-6-4-10-10-10h-44c-6 0-10 4-10 10v70h-70c-6 0-10 4-10 10v42c0 6 4 12 10 12h70v70c0 6 4 10 10 10h42c6 0 12-4 12-10v-70h70c6 0 10-4 10-10zM576 550c22 0 38-16 38-38s-16-38-38-38-40 16-40 38 18 38 40 38zM660 634c22 0 40-16 40-38s-18-38-40-38-38 16-38 38 16 38 38 38zM660 468c22 0 40-18 40-40s-18-38-40-38-38 16-38 38 16 40 38 40zM746 550c22 0 38-16 38-38s-16-38-38-38-40 16-40 38 18 38 40 38z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-game-controller-a" + ], + "defaultCode": 62521, + "grid": 0 + }, + "properties": { + "id": 370, + "order": 371, + "ligatures": "", + "prevSize": 32, + "code": 62521, + "name": "ion-ios-game-controller-a" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 369 + }, + { + "icon": { + "paths": [ + "M552 408c22 0 40 18 40 40s-18 40-40 40-40-18-40-40 18-40 40-40zM640 496c22 0 40 18 40 40s-18 40-40 40-40-18-40-40 18-40 40-40zM206 368c44 0 78 36 78 80s-34 80-78 80-78-36-78-80 34-80 78-80zM206 486c22 0 38-16 38-38s-16-38-38-38-38 16-38 38 16 38 38 38zM640 320c22 0 40 18 40 40s-18 40-40 40-40-18-40-40 18-40 40-40zM728 408c22 0 40 18 40 40s-18 40-40 40-40-18-40-40 18-40 40-40zM868 498c42 176 36 304-14 328-8 4-18 6-26 6-44 0-90-48-136-104-52-64-64-66-220-66h-48c-156 0-168 2-220 66-46 56-92 104-136 104-8 0-18-2-26-6-50-24-56-152-14-328s86-272 176-298c20-6 36-8 52-8 56 0 94 30 192 30s136-30 192-30c16 0 32 2 52 8 90 26 134 122 176 298zM840 798c20-10 46-96-2-292-42-180-86-256-156-276-16-4-28-6-42-6-20 0-38 4-60 10-32 8-72 20-132 20s-100-12-132-20c-22-6-40-10-60-10-14 0-26 2-42 6-70 20-114 96-156 276-48 196-22 282-2 292 4 2 8 2 12 2 12 0 28-8 46-24s38-36 64-68 48-56 88-68c34-10 76-10 158-10h48c82 0 124 0 158 10 40 12 62 36 88 68s46 52 64 68 34 24 46 24c4 0 8 0 12-2z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-game-controller-b-outline" + ], + "defaultCode": 62522, + "grid": 0 + }, + "properties": { + "id": 371, + "order": 372, + "ligatures": "", + "prevSize": 32, + "code": 62522, + "name": "ion-ios-game-controller-b-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 370 + }, + { + "icon": { + "paths": [ + "M206 410c22 0 38 16 38 38s-16 38-38 38-38-16-38-38 16-38 38-38zM868 498c42 176 36 304-14 328-8 4-18 6-26 6-44 0-90-48-136-104-52-64-64-66-220-66h-48c-156 0-168 2-220 66-46 56-92 104-136 104-8 0-18-2-26-6-50-24-56-152-14-328s86-272 176-298c20-6 36-8 52-8 56 0 94 30 192 30s136-30 192-30c16 0 32 2 52 8 90 26 134 122 176 298zM206 528c44 0 78-36 78-80s-34-80-78-80-78 36-78 80 34 80 78 80zM552 488c22 0 40-18 40-40s-18-40-40-40-40 18-40 40 18 40 40 40zM640 576c22 0 40-18 40-40s-18-40-40-40-40 18-40 40 18 40 40 40zM640 400c22 0 40-18 40-40s-18-40-40-40-40 18-40 40 18 40 40 40zM728 488c22 0 40-18 40-40s-18-40-40-40-40 18-40 40 18 40 40 40z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-game-controller-b" + ], + "defaultCode": 62523, + "grid": 0 + }, + "properties": { + "id": 372, + "order": 373, + "ligatures": "", + "prevSize": 32, + "code": 62523, + "name": "ion-ios-game-controller-b" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 371 + }, + { + "icon": { + "paths": [ + "M386 320c52 0 100 20 136 56s56 84 56 136-20 100-56 136-84 56-136 56-100-20-136-56-56-84-56-136 20-100 56-136 84-56 136-56zM386 672c88 0 160-72 160-160s-72-160-160-160-160 72-160 160 72 160 160 160zM276 166c-20 6-40 14-60 24 4 16 2 32 0 48-4 26-16 50-36 70-24 24-58 38-92 38-8 0-18 0-26-2-10 20-18 40-24 60 14 8 24 20 34 34 16 22 24 48 24 74s-8 52-24 74c-10 14-20 26-34 34 6 20 14 40 24 60 8-2 18-2 26-2 34 0 68 14 92 38 20 20 32 44 36 70 2 16 4 32 0 48 20 10 40 18 60 24 8-14 20-24 34-34 22-16 48-24 74-24s52 8 74 24c14 10 26 20 34 34 20-6 40-14 60-24-4-16-2-32 0-48 4-26 16-50 36-70 24-24 58-38 92-38 8 0 18 0 26 2 10-20 18-40 24-60-14-8-24-20-34-34-16-22-24-48-24-74s8-52 24-74c10-14 20-26 34-34-6-20-14-40-24-60-8 2-18 2-26 2-34 0-68-14-92-38-20-20-32-44-36-70-2-16-4-32 0-48-20-10-40-18-60-24-8 14-20 24-34 34-22 16-48 24-74 24s-52-8-74-24c-14-10-26-20-34-34zM476 128v0c40 10 80 26 114 48-16 36-10 80 20 110 20 20 44 28 70 28 14 0 28-2 40-8 22 34 38 74 48 114-38 14-64 50-64 92s28 78 64 92c-10 40-26 80-48 114-12-6-26-8-40-8-26 0-50 8-70 28-30 30-36 74-20 110-34 22-74 38-114 48-14-36-50-64-92-64s-78 28-92 64c-40-10-80-26-114-48 16-36 10-80-20-110-20-20-44-28-70-28-14 0-28 2-40 8-22-34-38-74-48-114 36-14 64-50 64-92s-26-78-64-92c10-40 26-80 48-114 12 6 26 8 40 8 26 0 50-8 70-28 30-30 36-74 20-110 34-22 74-38 114-48 14 38 50 64 92 64s78-26 92-64z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-gear-outline" + ], + "defaultCode": 62524, + "grid": 0 + }, + "properties": { + "id": 373, + "order": 374, + "ligatures": "", + "prevSize": 32, + "code": 62524, + "name": "ion-ios-gear-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 372 + }, + { + "icon": { + "paths": [ + "M704 512c0 42 28 78 64 92-10 40-26 80-48 114-12-6-26-8-40-8-26 0-50 8-70 28-30 30-36 74-20 110-34 22-74 38-114 48-14-36-50-64-92-64s-78 28-92 64c-40-10-80-26-114-48 16-36 10-80-20-110-20-20-44-28-70-28-14 0-28 2-40 8-22-34-38-74-48-114 36-14 64-50 64-92s-26-78-64-92c10-40 26-80 48-114 12 6 26 8 40 8 26 0 50-8 70-28 30-30 36-74 20-110 34-22 74-38 114-48 14 38 50 64 92 64s78-26 92-64c40 10 80 26 114 48-16 36-10 80 20 110 20 20 44 28 70 28 14 0 28-2 40-8 22 34 38 74 48 114-38 14-64 50-64 92zM386 672c88 0 160-72 160-160s-72-160-160-160-160 72-160 160 72 160 160 160z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-gear" + ], + "defaultCode": 62525, + "grid": 0 + }, + "properties": { + "id": 374, + "order": 375, + "ligatures": "", + "prevSize": 32, + "code": 62525, + "name": "ion-ios-gear" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 373 + }, + { + "icon": { + "paths": [ + "M866 494v0h30v36h-30c-4 44-26 86-58 116-34 32-78 50-124 50-102 0-184-82-184-184v0 0c0-20-24-44-52-44s-52 24-52 44v0 0c0 102-82 184-184 184-46 0-90-18-124-50-32-30-54-72-58-116h-30v-36h30c4-44 26-86 58-118 34-32 78-48 124-48 84 0 156 54 178 134 14-14 36-24 58-24s44 10 58 24c22-80 94-134 178-134 46 0 90 18 124 50 32 30 54 72 58 116zM684 666c84 0 154-70 154-154s-70-154-154-154-154 70-154 154 70 154 154 154zM212 666c84 0 154-70 154-154s-70-154-154-154-154 70-154 154 70 154 154 154z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-glasses-outline" + ], + "defaultCode": 62526, + "grid": 0 + }, + "properties": { + "id": 375, + "order": 376, + "ligatures": "", + "prevSize": 32, + "code": 62526, + "name": "ion-ios-glasses-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 374 + }, + { + "icon": { + "paths": [ + "M866 494v0h30v36h-30c-4 44-26 86-58 116-34 32-78 50-124 50-102 0-184-82-184-184v0 0c0-20-24-44-52-44s-52 24-52 44v0 0c0 102-82 184-184 184-46 0-90-18-124-50-32-30-54-72-58-116h-30v-36h30c4-44 26-86 58-118 34-32 78-48 124-48 84 0 156 54 178 134 14-14 36-24 58-24s44 10 58 24c22-80 94-134 178-134 46 0 90 18 124 50 32 30 54 72 58 116z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-glasses" + ], + "defaultCode": 62527, + "grid": 0 + }, + "properties": { + "id": 376, + "order": 377, + "ligatures": "", + "prevSize": 32, + "code": 62527, + "name": "ion-ios-glasses" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 375 + }, + { + "icon": { + "paths": [ + "M768 384h-224v256h224v32h-224v224h-32v-224h-256v224h-32v-224h-224v-32h224v-256h-224v-32h224v-224h32v224h256v-224h32v224h224v32zM512 640v-256h-256v256h256z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-grid-view-outline" + ], + "defaultCode": 62528, + "grid": 0 + }, + "properties": { + "id": 377, + "order": 378, + "ligatures": "", + "prevSize": 32, + "code": 62528, + "name": "ion-ios-grid-view-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 376 + }, + { + "icon": { + "paths": [ + "M256 640v-256h256v256h-256zM0 128h768v768h-768v-768zM704 384v-32h-160v-160h-32v160h-256v-160h-32v160h-160v32h160v256h-160v32h160v160h32v-160h256v160h32v-160h160v-32h-160v-256h160z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-grid-view" + ], + "defaultCode": 62529, + "grid": 0 + }, + "properties": { + "id": 378, + "order": 379, + "ligatures": "", + "prevSize": 32, + "code": 62529, + "name": "ion-ios-grid-view" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 377 + }, + { + "icon": { + "paths": [ + "M654 160c138 0 242 86 242 232 0 62-26 142-82 210s-90 104-200 176-166 86-166 86-56-14-166-86-144-108-200-176-82-148-82-210c0-146 104-232 242-232 78 0 164 36 206 106 42-70 128-106 206-106zM790 582c24-28 44-62 56-98 12-32 18-62 18-92 0-60-20-112-58-148-18-16-40-30-66-38-26-10-56-14-86-14-76 0-146 36-178 90l-28 46-28-46c-32-54-102-90-178-90-30 0-60 4-86 14-26 8-48 22-66 38-38 36-58 88-58 148 0 30 6 60 18 92 12 36 32 70 56 98 54 64 84 98 194 170 80 54 130 72 148 78 18-6 68-24 148-78 110-72 140-106 194-170z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-heart-outline" + ], + "defaultCode": 62530, + "grid": 0 + }, + "properties": { + "id": 379, + "order": 380, + "ligatures": "", + "prevSize": 32, + "code": 62530, + "name": "ion-ios-heart-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 378 + }, + { + "icon": { + "paths": [ + "M654 160c138 0 242 86 242 232 0 62-26 142-82 210s-90 104-200 176-166 86-166 86-56-14-166-86-144-108-200-176-82-148-82-210c0-146 104-232 242-232 78 0 164 36 206 106 42-70 128-106 206-106z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-heart" + ], + "defaultCode": 62531, + "grid": 0 + }, + "properties": { + "id": 380, + "order": 381, + "ligatures": "", + "prevSize": 32, + "code": 62531, + "name": "ion-ios-heart" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 379 + }, + { + "icon": { + "paths": [ + "M136 732c-18 0-34-16-34-34s16-34 34-34 34 16 34 34-16 34-34 34zM204 502c-46 44-44 54-46 106h-38c2-56 14-86 60-128 22-20 38-48 38-78 0-48-38-78-84-78-64 0-98 32-96 92h-38c0-84 50-124 136-124 66 0 120 40 120 108 0 44-22 74-52 102z" + ], + "width": 256, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-help-empty" + ], + "defaultCode": 62532, + "grid": 0 + }, + "properties": { + "id": 381, + "order": 382, + "ligatures": "", + "prevSize": 32, + "code": 62532, + "name": "ion-ios-help-empty" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 380 + }, + { + "icon": { + "paths": [ + "M416 96c230 0 416 186 416 416s-186 416-416 416-416-186-416-416 186-416 416-416zM416 894c210 0 382-172 382-382s-172-382-382-382-382 172-382 382 172 382 382 382zM424 292c66 0 120 42 120 110 0 44-22 72-52 100-46 46-44 54-46 106h-38c2-56 14-86 60-128 22-20 38-46 38-76 0-48-38-80-84-80-64 0-98 32-96 92h-38c0-84 50-124 136-124zM424 664c18 0 34 16 34 34s-16 34-34 34-34-16-34-34 16-34 34-34z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-help-outline" + ], + "defaultCode": 62533, + "grid": 0 + }, + "properties": { + "id": 382, + "order": 383, + "ligatures": "", + "prevSize": 32, + "code": 62533, + "name": "ion-ios-help-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 381 + }, + { + "icon": { + "paths": [ + "M416 96c230 0 416 186 416 416s-186 416-416 416-416-186-416-416 186-416 416-416zM424 732c18 0 34-16 34-34s-16-34-34-34-34 16-34 34 16 34 34 34zM492 502c30-28 52-58 52-102 0-68-54-108-120-108-86 0-136 40-136 124h38c-2-60 32-92 96-92 46 0 84 30 84 78 0 30-16 58-38 78-46 42-58 72-60 128h38c2-52 0-62 46-106z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-help" + ], + "defaultCode": 62534, + "grid": 0 + }, + "properties": { + "id": 383, + "order": 384, + "ligatures": "", + "prevSize": 32, + "code": 62534, + "name": "ion-ios-help" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 382 + }, + { + "icon": { + "paths": [ + "M384 224l320 256v416h-224v-256h-192v256h-224v-416zM672 864v-368l-288-232-288 232v368h160v-256h256v256h160zM384 128l384 306-24 24-360-290-360 290-24-24 64-50v-192h128v90zM160 308v-84h-64v134z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-home-outline" + ], + "defaultCode": 62535, + "grid": 0 + }, + "properties": { + "id": 384, + "order": 385, + "ligatures": "", + "prevSize": 32, + "code": 62535, + "name": "ion-ios-home-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 383 + }, + { + "icon": { + "paths": [ + "M384 224l320 256v416h-224v-256h-192v256h-224v-416zM384 128l384 306-24 24-360-290-360 290-24-24 64-50v-192h128v90z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-home" + ], + "defaultCode": 62536, + "grid": 0 + }, + "properties": { + "id": 385, + "order": 386, + "ligatures": "", + "prevSize": 32, + "code": 62536, + "name": "ion-ios-home" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 384 + }, + { + "icon": { + "paths": [ + "M838 376c38 38 58 86 58 136s-20 98-58 136c-38 36-88 56-140 56s-100-20-138-56l-252-246c-30-30-70-44-112-44s-80 14-110 44c-62 60-62 160 0 220 30 30 68 44 110 44s82-14 112-44l86-84 26 28-84 82c-38 36-88 56-140 56s-100-20-138-56c-38-38-58-86-58-136s20-98 58-136c38-36 86-56 138-56s102 20 140 56l252 246c30 30 68 44 110 44s82-14 112-44c62-60 62-160 0-220-30-30-70-44-112-44s-80 14-110 44l-86 84-26-28 84-82c38-36 88-56 140-56s100 20 138 56z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-infinite-outline" + ], + "defaultCode": 62537, + "grid": 0 + }, + "properties": { + "id": 386, + "order": 387, + "ligatures": "", + "prevSize": 32, + "code": 62537, + "name": "ion-ios-infinite-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 385 + }, + { + "icon": { + "paths": [ + "M866 364c40 40 62 92 62 148s-22 108-62 148-96 60-152 60-110-20-150-60l-250-246c-26-26-64-40-102-40s-74 14-100 40-42 62-42 98c0 38 16 72 42 98s62 40 100 40 76-14 102-40l78-76 50 50-78 76c-40 40-96 60-152 60s-110-20-150-60-62-92-62-148 22-108 62-148 94-60 150-60 112 20 152 60l250 246c26 26 62 40 100 40s76-14 102-40 40-62 40-98c0-38-14-72-40-98s-64-40-102-40-74 14-100 40l-78 76-50-50 78-76c40-40 96-60 152-60s110 20 150 60z" + ], + "width": 928, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-infinite" + ], + "defaultCode": 62538, + "grid": 0 + }, + "properties": { + "id": 387, + "order": 388, + "ligatures": "", + "prevSize": 32, + "code": 62538, + "name": "ion-ios-infinite" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 386 + }, + { + "icon": { + "paths": [ + "M16 344c0-26 14-40 40-40s40 14 40 40-14 40-40 40-40-14-40-40zM96 688h32v16h-128v-16h32v-240h-32v-16h96v256z" + ], + "width": 128, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-information-empty" + ], + "defaultCode": 62539, + "grid": 0 + }, + "properties": { + "id": 388, + "order": 389, + "ligatures": "", + "prevSize": 32, + "code": 62539, + "name": "ion-ios-information-empty" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 387 + }, + { + "icon": { + "paths": [ + "M368 344c0-26 14-40 40-40s40 14 40 40-14 40-40 40-40-14-40-40zM448 688h32v16h-128v-16h32v-240h-32v-16h96v256zM416 96c114 0 212 40 294 122s122 180 122 294-40 212-122 294-180 122-294 122-212-40-294-122-122-180-122-294 40-212 122-294 180-122 294-122zM416 894c106 0 196-38 270-112s112-164 112-270-38-196-112-270-164-112-270-112-196 38-270 112-112 164-112 270 38 196 112 270 164 112 270 112z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-information-outline" + ], + "defaultCode": 62540, + "grid": 0 + }, + "properties": { + "id": 389, + "order": 390, + "ligatures": "", + "prevSize": 32, + "code": 62540, + "name": "ion-ios-information-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 388 + }, + { + "icon": { + "paths": [ + "M416 96c230 0 416 186 416 416s-186 416-416 416-416-186-416-416 186-416 416-416zM408 304c-22 0-40 18-40 40s18 40 40 40 40-18 40-40-18-40-40-40zM480 704v-16h-32v-256h-96v16h32v240h-32v16h128z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-information" + ], + "defaultCode": 62541, + "grid": 0 + }, + "properties": { + "id": 390, + "order": 391, + "ligatures": "", + "prevSize": 32, + "code": 62541, + "name": "ion-ios-information" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 389 + }, + { + "icon": { + "paths": [ + "M756 270c48 68 76 152 76 242 0 230-184 416-414 416s-418-186-418-416 188-416 418-416c90 0 172 28 240 76 12-10 26-16 42-16 38 0 70 32 70 70 0 16-4 32-14 44zM700 182c-24 0-44 20-44 44s20 44 44 44 44-20 44-44-20-44-44-44zM688 784c36-36 62-78 82-124 20-48 30-96 30-148s-10-102-30-150c-10-26-24-50-40-72-10 4-20 6-30 6-38 0-70-32-70-70 0-10 4-22 8-30-22-16-46-30-72-40-48-20-98-28-150-28s-102 8-150 28c-46 20-86 48-122 84s-62 76-82 122c-20 48-30 98-30 150s10 100 30 148c20 46 46 88 82 124s76 62 122 82c48 20 98 30 150 30s102-10 150-30c46-20 86-46 122-82zM416 320c106 0 192 86 192 192s-86 192-192 192-192-86-192-192 86-192 192-192zM416 672c88 0 160-72 160-160s-72-160-160-160-158 72-158 160 70 160 158 160z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-ionic-outline" + ], + "defaultCode": 62542, + "grid": 0 + }, + "properties": { + "id": 391, + "order": 392, + "ligatures": "", + "prevSize": 32, + "code": 62542, + "name": "ion-ios-ionic-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 390 + }, + { + "icon": { + "paths": [ + "M662 682c60 0 106 48 106 108s-46 106-106 106-108-46-108-106 48-108 108-108zM662 864c42 0 74-32 74-74s-32-76-74-76-76 34-76 76 34 74 76 74zM384 682c60 0 106 48 106 108s-46 106-106 106-106-46-106-106 46-108 106-108zM384 864c42 0 74-32 74-74s-32-76-74-76-74 34-74 76 32 74 74 74zM106 682c60 0 108 48 108 108s-48 106-108 106-106-46-106-106 46-108 106-108zM106 864c42 0 76-32 76-74s-34-76-76-76-74 34-74 76 32 74 74 74zM662 406c60 0 106 46 106 106s-46 106-106 106-108-46-108-106 48-106 108-106zM662 586c42 0 74-32 74-74s-32-74-74-74-76 32-76 74 34 74 76 74zM384 406c60 0 106 46 106 106s-46 106-106 106-106-46-106-106 46-106 106-106zM384 586c42 0 74-32 74-74s-32-74-74-74-74 32-74 74 32 74 74 74zM106 406c60 0 108 46 108 106s-48 106-108 106-106-46-106-106 46-106 106-106zM106 586c42 0 76-32 76-74s-34-74-76-74-74 32-74 74 32 74 74 74zM662 342c-60 0-108-48-108-108s48-106 108-106 106 46 106 106-46 108-106 108zM662 160c-42 0-76 32-76 74s34 76 76 76 74-34 74-76-32-74-74-74zM384 128c60 0 106 46 106 106s-46 108-106 108-106-48-106-108 46-106 106-106zM384 310c42 0 74-34 74-76s-32-74-74-74-74 32-74 74 32 76 74 76zM106 128c60 0 108 46 108 106s-48 108-108 108-106-48-106-108 46-106 106-106zM106 310c42 0 76-34 76-76s-34-74-76-74-74 32-74 74 32 76 74 76z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-keypad-outline" + ], + "defaultCode": 62543, + "grid": 0 + }, + "properties": { + "id": 392, + "order": 393, + "ligatures": "", + "prevSize": 32, + "code": 62543, + "name": "ion-ios-keypad-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 391 + }, + { + "icon": { + "paths": [ + "M662 682c60 0 106 48 106 108s-46 106-106 106-108-46-108-106 48-108 108-108zM384 682c60 0 106 48 106 108s-46 106-106 106-106-46-106-106 46-108 106-108zM106 682c60 0 108 48 108 108s-48 106-108 106-106-46-106-106 46-108 106-108zM662 406c60 0 106 46 106 106s-46 106-106 106-108-46-108-106 48-106 108-106zM384 406c60 0 106 46 106 106s-46 106-106 106-106-46-106-106 46-106 106-106zM106 406c60 0 108 46 108 106s-48 106-108 106-106-46-106-106 46-106 106-106zM662 342c-60 0-108-48-108-108s48-106 108-106 106 46 106 106-46 108-106 108zM384 128c60 0 106 46 106 106s-46 108-106 108-106-48-106-108 46-106 106-106zM106 128c60 0 108 46 108 106s-48 108-108 108-106-48-106-108 46-106 106-106z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-keypad" + ], + "defaultCode": 62544, + "grid": 0 + }, + "properties": { + "id": 393, + "order": 394, + "ligatures": "", + "prevSize": 32, + "code": 62544, + "name": "ion-ios-keypad" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 392 + }, + { + "icon": { + "paths": [ + "M576 346c0 62-26 118-60 166v0c-22 30-44 56-64 90-44 76-36 146-36 164v2h-256v-2c0-14 6-88-38-164-20-34-40-60-62-90v0c-34-48-60-104-60-166 0-156 132-282 288-282s288 126 288 282zM478 508l12-16c32-44 54-94 54-146 0-66-32-130-80-178s-110-72-176-72-128 24-176 72-80 112-80 178c0 52 22 102 54 146l38 52c10 12 18 26 26 42 34 58 42 116 42 150h32v-224l-64-128h34l62 128v224h64v-224l62-128h34l-64 128v224h32c0-34 8-90 42-150 16-28 32-50 48-72 2-2 2-4 4-6zM224 960v-32h128v32h-128zM192 896v-32h192v32h-192zM192 832v-32h192v32h-192z" + ], + "width": 576, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-lightbulb-outline" + ], + "defaultCode": 62545, + "grid": 0 + }, + "properties": { + "id": 394, + "order": 395, + "ligatures": "", + "prevSize": 32, + "code": 62545, + "name": "ion-ios-lightbulb-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 393 + }, + { + "icon": { + "paths": [ + "M576 346c0 62-26 118-60 166v0c-22 30-44 56-64 90-44 76-36 146-36 164v2h-64v-256l64-128h-32l-64 128v256h-64v-256l-62-128h-34l64 128v256h-64v-2c0-14 6-88-38-164-20-34-40-60-62-90v0c-34-48-60-104-60-166 0-156 132-282 288-282s288 126 288 282zM224 960v-32h128v32h-128zM192 896v-32h192v32h-192zM192 832v-32h192v32h-192z" + ], + "width": 576, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-lightbulb" + ], + "defaultCode": 62546, + "grid": 0 + }, + "properties": { + "id": 395, + "order": 396, + "ligatures": "", + "prevSize": 32, + "code": 62546, + "name": "ion-ios-lightbulb" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 394 + }, + { + "icon": { + "paths": [ + "M736 160h-704v704h704v-704zM768 128v0 768h-768v-768h768zM256 336v-32h384v32h-384zM256 528v-32h384v32h-384zM256 720v-32h384v32h-384zM128 320c0-22 10-32 32-32s32 10 32 32-10 32-32 32-32-10-32-32zM128 512c0-22 10-32 32-32s32 10 32 32-10 32-32 32-32-10-32-32zM128 704c0-22 10-32 32-32s32 10 32 32-10 32-32 32-32-10-32-32z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-list-outline" + ], + "defaultCode": 62547, + "grid": 0 + }, + "properties": { + "id": 396, + "order": 397, + "ligatures": "", + "prevSize": 32, + "code": 62547, + "name": "ion-ios-list-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 395 + }, + { + "icon": { + "paths": [ + "M0 128h768v768h-768v-768zM160 736c18 0 32-14 32-32s-14-32-32-32-32 14-32 32 14 32 32 32zM160 544c18 0 32-14 32-32s-14-32-32-32-32 14-32 32 14 32 32 32zM160 352c18 0 32-14 32-32s-14-32-32-32-32 14-32 32 14 32 32 32zM640 720v-32h-384v32h384zM640 528v-32h-384v32h384zM640 336v-32h-384v32h384z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-list" + ], + "defaultCode": 62548, + "grid": 0 + }, + "properties": { + "id": 397, + "order": 398, + "ligatures": "", + "prevSize": 32, + "code": 62548, + "name": "ion-ios-list" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 396 + }, + { + "icon": { + "paths": [ + "M288 96c-68 0-134 26-182 74s-74 114-74 182c0 86 48 214 140 372 44 76 88 144 116 182 28-38 72-106 116-182 92-158 140-286 140-372 0-68-26-134-74-182s-114-74-182-74zM288 64v0c160 0 288 128 288 288 0 224-288 608-288 608s-288-384-288-608c0-160 128-288 288-288zM288 224c70 0 128 58 128 128s-58 128-128 128-128-58-128-128 58-128 128-128zM288 446c52 0 94-42 94-94s-42-94-94-94-94 42-94 94 42 94 94 94z" + ], + "width": 576, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-location-outline" + ], + "defaultCode": 62549, + "grid": 0 + }, + "properties": { + "id": 398, + "order": 399, + "ligatures": "", + "prevSize": 32, + "code": 62549, + "name": "ion-ios-location-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 397 + }, + { + "icon": { + "paths": [ + "M288 64c160 0 288 128 288 288 0 224-288 608-288 608s-288-384-288-608c0-160 128-288 288-288zM288 446c52 0 94-42 94-94s-42-94-94-94-94 42-94 94 42 94 94 94z" + ], + "width": 576, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-location" + ], + "defaultCode": 62550, + "grid": 0 + }, + "properties": { + "id": 399, + "order": 400, + "ligatures": "", + "prevSize": 32, + "code": 62550, + "name": "ion-ios-location" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 398 + }, + { + "icon": { + "paths": [ + "M528 448h112v480h-640v-480h112v-144c0-114 94-208 208-208s208 94 208 208v144zM144 304v144h352v-144c0-98-78-176-176-176s-176 78-176 176zM608 896v-416h-576v416h576zM320 576c36 0 64 28 64 64 0 30-20 54-48 62v66h-32v-66c-28-8-48-32-48-62 0-36 28-64 64-64zM320 672c18 0 32-14 32-32s-14-32-32-32-32 14-32 32 14 32 32 32z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-locked-outline" + ], + "defaultCode": 62551, + "grid": 0 + }, + "properties": { + "id": 400, + "order": 401, + "ligatures": "", + "prevSize": 32, + "code": 62551, + "name": "ion-ios-locked-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 399 + }, + { + "icon": { + "paths": [ + "M528 448h112v480h-640v-480h112v-144c0-114 94-208 208-208s208 94 208 208v144zM336 702c28-8 48-32 48-62 0-36-28-64-64-64s-64 28-64 64c0 30 20 54 48 62v66h32v-66zM496 448v-144c0-98-78-176-176-176s-176 78-176 176v144h352zM320 608c18 0 32 14 32 32s-14 32-32 32-32-14-32-32 14-32 32-32z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-locked" + ], + "defaultCode": 62552, + "grid": 0 + }, + "properties": { + "id": 401, + "order": 402, + "ligatures": "", + "prevSize": 32, + "code": 62552, + "name": "ion-ios-locked" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 400 + }, + { + "icon": { + "paths": [ + "M512 96c230 0 416 186 416 416 0 28-2 56-8 84l-2 8-48-10 2-8c4-24 8-48 8-74 0-202-166-368-368-368-132 0-254 72-320 188l-4 6-42-22 4-8c74-130 212-212 362-212zM832 692l4-6 42 22-4 8c-74 130-212 212-362 212-230 0-416-186-416-416 0-28 2-56 8-84l2-8 48 10-2 8c-4 24-8 48-8 74 0 202 166 368 368 368 132 0 254-72 320-188zM768 512h256l-128 128zM0 512l128-128 128 128h-256z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-loop-strong" + ], + "defaultCode": 62553, + "grid": 0 + }, + "properties": { + "id": 402, + "order": 403, + "ligatures": "", + "prevSize": 32, + "code": 62553, + "name": "ion-ios-loop-strong" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 401 + }, + { + "icon": { + "paths": [ + "M956 512l22 22-104 106-106-106 20-22 86 82zM898 512v0 0c0 14 0 28-2 42l-32-2c2-14 2-28 2-42-2-206-170-374-376-374-136 0-262 74-328 192l-28-16c72-128 208-208 356-208 224 0 406 182 408 404v0 4zM818 696l28 16c-72 128-208 208-356 208-222 0-404-180-408-400v0-8c0-14 0-28 2-42l32 2c-2 14-2 28-2 42 0 206 170 374 376 374 136 0 262-74 328-192zM106 384l104 106-22 22-82-82-84 82-22-22z" + ], + "width": 978, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-loop" + ], + "defaultCode": 62554, + "grid": 0 + }, + "properties": { + "id": 403, + "order": 404, + "ligatures": "", + "prevSize": 32, + "code": 62554, + "name": "ion-ios-loop" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 402 + }, + { + "icon": { + "paths": [ + "M728 376l-236 136 236 136-64 112-236-138v274h-128v-274l-236 138-64-112 236-136-236-136 64-112 236 138v-274h128v274l236-138zM684 660l-256-148 256-148-32-56-256 148v-296h-64v296l-256-148-32 56 256 148-256 148 32 56 256-148v296h64v-296l256 148z" + ], + "width": 728, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-medical-outline" + ], + "defaultCode": 62555, + "grid": 0 + }, + "properties": { + "id": 404, + "order": 405, + "ligatures": "", + "prevSize": 32, + "code": 62555, + "name": "ion-ios-medical-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 403 + }, + { + "icon": { + "paths": [ + "M728 376l-236 136 236 136-64 112-236-138v274h-128v-274l-236 138-64-112 236-136-236-136 64-112 236 138v-274h128v274l236-138z" + ], + "width": 728, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-medical" + ], + "defaultCode": 62556, + "grid": 0 + }, + "properties": { + "id": 405, + "order": 406, + "ligatures": "", + "prevSize": 32, + "code": 62556, + "name": "ion-ios-medical" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 404 + }, + { + "icon": { + "paths": [ + "M448 416h-64v128h-128v64h128v128h64v-128h128v-64h-128v-128zM480 384v0 128h128v128h-128v128h-128v-128h-128v-128h128v-128h128zM576 256h256v640h-832v-640h256v-64c0-36 20-64 58-64h198c38 0 64 28 64 64v64zM288 196v60h256v-60c0-20-14-36-34-36h-194c-22 0-28 16-28 36zM800 864v-576h-768v576h768z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-medkit-outline" + ], + "defaultCode": 62557, + "grid": 0 + }, + "properties": { + "id": 406, + "order": 407, + "ligatures": "", + "prevSize": 32, + "code": 62557, + "name": "ion-ios-medkit-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 405 + }, + { + "icon": { + "paths": [ + "M448 544h128v64h-128v128h-64v-128h-128v-64h128v-128h64v128zM576 256h256v640h-832v-640h256v-64c0-36 20-64 58-64h198c38 0 64 28 64 64v64zM288 196v60h256v-60c0-20-14-36-34-36h-194c-22 0-28 16-28 36zM608 640v-128h-128v-128h-128v128h-128v128h128v128h128v-128h128z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-medkit" + ], + "defaultCode": 62558, + "grid": 0 + }, + "properties": { + "id": 407, + "order": 408, + "ligatures": "", + "prevSize": 32, + "code": 62558, + "name": "ion-ios-medkit" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 406 + }, + { + "icon": { + "paths": [ + "M532 960l-516-880 28-16 516 880zM256 706c-88 0-158-74-158-166v-236l226 386c-20 10-44 16-68 16zM414 540c0 20-4 38-10 56l-272-468c28-40 74-64 124-64 88 0 158 76 158 168v308zM512 544c0 56-18 108-48 150l-20-34c22-34 34-72 34-116v-160h34v160zM278 798v0 126h138v36h-322v-36h146v-126c-134-10-240-120-240-254v-160h38v160c0 120 100 218 220 218 34 0 68-8 96-22l18 32c-28 14-60 24-94 26z" + ], + "width": 560, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-mic-off" + ], + "defaultCode": 62559, + "grid": 0 + }, + "properties": { + "id": 408, + "order": 409, + "ligatures": "", + "prevSize": 32, + "code": 62559, + "name": "ion-ios-mic-off" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 407 + }, + { + "icon": { + "paths": [ + "M256 64c88 0 158 76 158 168v308c0 92-70 168-158 168s-158-76-158-168v-308c0-92 70-168 158-168zM382 540v-308c0-74-56-136-126-136s-126 62-126 136v308c0 74 56 136 126 136s126-62 126-136zM478 384h34v160c0 134-102 244-234 254v126h138v36h-322v-36h146v-126c-134-10-240-120-240-254v-160h38v160c0 120 100 218 220 218s220-98 220-218v-160z" + ], + "width": 512, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-mic-outline" + ], + "defaultCode": 62560, + "grid": 0 + }, + "properties": { + "id": 409, + "order": 410, + "ligatures": "", + "prevSize": 32, + "code": 62560, + "name": "ion-ios-mic-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 408 + }, + { + "icon": { + "paths": [ + "M256 708c-88 0-158-76-158-168v-308c0-92 70-168 158-168s158 76 158 168v308c0 92-70 168-158 168zM478 384h34v160c0 134-102 244-234 254v126h138v36h-322v-36h146v-126c-134-10-240-120-240-254v-160h38v160c0 120 100 218 220 218s220-98 220-218v-160z" + ], + "width": 512, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-mic" + ], + "defaultCode": 62561, + "grid": 0 + }, + "properties": { + "id": 410, + "order": 411, + "ligatures": "", + "prevSize": 32, + "code": 62561, + "name": "ion-ios-mic" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 409 + }, + { + "icon": { + "paths": [ + "M512 530h-512v-34h512v34z" + ], + "width": 512, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-minus-empty" + ], + "defaultCode": 62562, + "grid": 0 + }, + "properties": { + "id": 411, + "order": 412, + "ligatures": "", + "prevSize": 32, + "code": 62562, + "name": "ion-ios-minus-empty" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 410 + }, + { + "icon": { + "paths": [ + "M416 96c230 0 416 186 416 416s-186 416-416 416-416-186-416-416 186-416 416-416zM416 894c210 0 382-172 382-382s-172-382-382-382-382 172-382 382 172 382 382 382zM160 530v-34h512v34h-512z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-minus-outline" + ], + "defaultCode": 62563, + "grid": 0 + }, + "properties": { + "id": 412, + "order": 413, + "ligatures": "", + "prevSize": 32, + "code": 62563, + "name": "ion-ios-minus-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 411 + }, + { + "icon": { + "paths": [ + "M416 96c230 0 416 186 416 416s-186 416-416 416-416-186-416-416 186-416 416-416zM672 530v-34h-512v34h512z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-minus" + ], + "defaultCode": 62564, + "grid": 0 + }, + "properties": { + "id": 413, + "order": 414, + "ligatures": "", + "prevSize": 32, + "code": 62564, + "name": "ion-ios-minus" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 412 + }, + { + "icon": { + "paths": [ + "M960 768h-352v32h128v32h-514v-32h128v-32h-350v-576h960v576zM32 224v512h896v-512h-896z" + ], + "width": 960, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-monitor-outline" + ], + "defaultCode": 62565, + "grid": 0 + }, + "properties": { + "id": 414, + "order": 415, + "ligatures": "", + "prevSize": 32, + "code": 62565, + "name": "ion-ios-monitor-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 413 + }, + { + "icon": { + "paths": [ + "M960 768h-352v32h128v32h-514v-32h128v-32h-350v-576h960v576zM32 224v512h896v-512h-896zM64 704v-448h832v448h-832z" + ], + "width": 960, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-monitor" + ], + "defaultCode": 62566, + "grid": 0 + }, + "properties": { + "id": 415, + "order": 416, + "ligatures": "", + "prevSize": 32, + "code": 62566, + "name": "ion-ios-monitor" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 414 + }, + { + "icon": { + "paths": [ + "M390 630c14 0 28-2 42-6-8 14-14 24-24 36-42 50-106 82-176 82-128 0-232-102-232-230 0-104 68-192 162-222 14-4 28-6 44-8-8 12-16 24-22 36-14 28-22 60-22 94 0 58 22 112 64 154s96 64 154 64h10zM232 710c50 0 96-18 130-48-130-10-232-118-232-250 0-28 4-56 12-80-66 32-110 102-110 180 0 110 90 198 200 198z" + ], + "width": 432, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-moon-outline" + ], + "defaultCode": 62567, + "grid": 0 + }, + "properties": { + "id": 416, + "order": 417, + "ligatures": "", + "prevSize": 32, + "code": 62567, + "name": "ion-ios-moon-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 415 + }, + { + "icon": { + "paths": [ + "M390 630c14 0 28-2 42-6-8 14-14 24-24 36-42 50-106 82-176 82-128 0-232-102-232-230 0-104 68-192 162-222 14-4 28-6 44-8-8 12-16 24-22 36-14 28-22 60-22 94 0 58 22 112 64 154s96 64 154 64h10z" + ], + "width": 432, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-moon" + ], + "defaultCode": 62568, + "grid": 0 + }, + "properties": { + "id": 417, + "order": 418, + "ligatures": "", + "prevSize": 32, + "code": 62568, + "name": "ion-ios-moon" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 416 + }, + { + "icon": { + "paths": [ + "M320 476c-20 0-36 16-36 36s16 36 36 36 36-16 36-36-16-36-36-36zM320 448v0c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM64 476c-20 0-36 16-36 36s16 36 36 36 36-16 36-36-16-36-36-36zM64 448v0c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM576 476c-20 0-36 16-36 36s16 36 36 36 36-16 36-36-16-36-36-36zM576 448v0c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-more-outline" + ], + "defaultCode": 62569, + "grid": 0 + }, + "properties": { + "id": 418, + "order": 419, + "ligatures": "", + "prevSize": 32, + "code": 62569, + "name": "ion-ios-more-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 417 + }, + { + "icon": { + "paths": [ + "M320 448v0c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM64 448v0c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM576 448v0c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-more" + ], + "defaultCode": 62570, + "grid": 0 + }, + "properties": { + "id": 419, + "order": 420, + "ligatures": "", + "prevSize": 32, + "code": 62570, + "name": "ion-ios-more" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 418 + }, + { + "icon": { + "paths": [ + "M384 204v132c0 6-6 12-12 10v0l-146-26v384c0 66 2 160-102 164-96 4-124-32-124-82 0-38 18-78 102-82 44-2 74-2 90-2v-546l180 38 4 2c4 0 6 2 8 6v0 2z" + ], + "width": 384, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-musical-note" + ], + "defaultCode": 62571, + "grid": 0 + }, + "properties": { + "id": 420, + "order": 421, + "ligatures": "", + "prevSize": 32, + "code": 62571, + "name": "ion-ios-musical-note" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 419 + }, + { + "icon": { + "paths": [ + "M640 640c0 68 8 160-98 164-98 4-124-32-124-82 0-40 18-78 104-82 46-2 68-4 86-4v-320l-382 64v322c0 68 6 162-100 166-98 4-126-34-126-84 0-40 18-78 104-82 46-2 70-2 88-2v-474l448-70v484z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-musical-notes" + ], + "defaultCode": 62572, + "grid": 0 + }, + "properties": { + "id": 421, + "order": 422, + "ligatures": "", + "prevSize": 32, + "code": 62572, + "name": "ion-ios-musical-notes" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 420 + }, + { + "icon": { + "paths": [ + "M416 128c-102 0-198 42-270 114s-114 168-114 270 42 198 114 270 168 114 270 114 198-42 270-114 114-168 114-270-42-198-114-270-168-114-270-114zM416 96v0c230 0 416 186 416 416s-186 416-416 416-416-186-416-416 186-416 416-416zM608 320l-192 448v-256h-256z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-navigate-outline" + ], + "defaultCode": 62573, + "grid": 0 + }, + "properties": { + "id": 422, + "order": 423, + "ligatures": "", + "prevSize": 32, + "code": 62573, + "name": "ion-ios-navigate-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 421 + }, + { + "icon": { + "paths": [ + "M416 96c230 0 416 186 416 416s-186 416-416 416-416-186-416-416 186-416 416-416zM416 768l192-448-448 192h256v256z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-navigate" + ], + "defaultCode": 62574, + "grid": 0 + }, + "properties": { + "id": 423, + "order": 424, + "ligatures": "", + "prevSize": 32, + "code": 62574, + "name": "ion-ios-navigate" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 422 + }, + { + "icon": { + "paths": [ + "M588 468v0c12 12 20 28 20 46 0 22-10 40-26 52v0s-102 74-212 154l-76-62c-4-4-8-6-12-6-2 0-4 0-6 2v0c-4 4-4 12 2 20l58 70-230 168c-12 8-26 16-42 16-36 0-64-28-64-64 0-14 2-26 8-36v0c4-4 34-50 74-114l42 34c4 4 8 4 12 4 2 0 6 0 8-2v0c4-4 2-12-4-20l-38-46c54-86 120-192 168-268l72 60c4 4 8 6 12 6 2 0 4-2 6-4v0c4-4 4-10-2-18l-66-80c22-36 38-58 38-58v0c12-20 30-32 54-32 18 0 36 8 48 20v0l156 158zM564 540c8-6 12-16 12-26 0-8-4-18-10-24l-10-8v-2l-148-148c-6-6-16-10-24-10-12 0-20 6-26 16l-10 16c-4 6-10 14-16 24l50 60 2 2c16 20 16 44 0 60l-4 4c-8 6-16 10-26 10s-22-4-32-12v-2h-2l-42-36-48 78-88 140 24 28c16 20 16 46 0 62v0c-8 8-18 12-30 12-10 0-22-4-32-12v0 0l-14-10c-6 10-10 18-16 26-24 38-32 52-36 58-2 6-4 12-4 18 0 18 14 32 32 32 6 0 12-4 22-10l202-148-36-44h-2c-16-20-16-46 0-62v0 0 0c8-8 20-12 30-12s22 4 32 12v0h2l56 48c98-72 186-136 192-140zM752 230l16 28-10 6-206 120-34-34 142-246 4-8 28 16-6 8-126 222 182-106z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-nutrition-outline" + ], + "defaultCode": 62575, + "grid": 0 + }, + "properties": { + "id": 424, + "order": 425, + "ligatures": "", + "prevSize": 32, + "code": 62575, + "name": "ion-ios-nutrition-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 423 + }, + { + "icon": { + "paths": [ + "M590 468v0c12 12 18 26 18 44 0 22-10 40-26 52v0s-102 76-212 156l-76-64c-8-6-16-6-20-2v0c-4 4-4 12 2 20l58 70-228 168c-12 8-26 16-42 16-36 0-64-28-64-64 0-14 4-26 10-36v0c2-4 32-50 72-114l40 34c8 6 16 6 20 2v0c4-4 4-12-2-20l-40-46c54-86 120-192 168-268l72 60c8 6 16 6 20 2v0c4-4 4-12-2-20l-66-80c22-36 36-58 36-58v0c12-20 32-32 56-32 18 0 36 8 48 20v0l158 160zM768 278l-206 118-56-58 140-242 56 32-100 170 134-76z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-nutrition" + ], + "defaultCode": 62576, + "grid": 0 + }, + "properties": { + "id": 425, + "order": 426, + "ligatures": "", + "prevSize": 32, + "code": 62576, + "name": "ion-ios-nutrition" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 424 + }, + { + "icon": { + "paths": [ + "M96 128h672v706c0 34-28 62-62 62h-644c-34 0-62-28-62-62v-610h64v32h-32v578c0 16 14 30 30 30h644c16 0 30-14 30-30v-674h-608v640h-32v-672zM192 256v-32h256v32h-256zM192 416v-32h480v32h-480zM192 576v-32h384v32h-384zM192 736v-32h480v32h-480z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-paper-outline" + ], + "defaultCode": 62577, + "grid": 0 + }, + "properties": { + "id": 426, + "order": 427, + "ligatures": "", + "prevSize": 32, + "code": 62577, + "name": "ion-ios-paper-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 425 + }, + { + "icon": { + "paths": [ + "M96 128h672v706c0 34-28 62-62 62h-644c-34 0-62-28-62-62v-610h64v576h32v-672zM192 224v32h256v-32h-256zM192 544v32h384v-32h-384zM672 736v-32h-480v32h480zM672 416v-32h-480v32h480z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-paper" + ], + "defaultCode": 62578, + "grid": 0 + }, + "properties": { + "id": 427, + "order": 428, + "ligatures": "", + "prevSize": 32, + "code": 62578, + "name": "ion-ios-paper" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 426 + }, + { + "icon": { + "paths": [ + "M0 500l640-308-292 640-114-230zM264 592l82 166 230-498zM572 256l-496 242 166 72z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-paperplane-outline" + ], + "defaultCode": 62579, + "grid": 0 + }, + "properties": { + "id": 428, + "order": 429, + "ligatures": "", + "prevSize": 32, + "code": 62579, + "name": "ion-ios-paperplane-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 427 + }, + { + "icon": { + "paths": [ + "M0 500l640-308-428 400zM640 192l-292 640-104-208z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-paperplane" + ], + "defaultCode": 62580, + "grid": 0 + }, + "properties": { + "id": 429, + "order": 430, + "ligatures": "", + "prevSize": 32, + "code": 62580, + "name": "ion-ios-paperplane" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 428 + }, + { + "icon": { + "paths": [ + "M288 300v-108h32v108h-32zM0 512v-32h110v32h-110zM88 298l20-22 64 64-22 22zM446 360l-22-22 64-64 22 22zM112 704l-20-22 62-62 22 22zM258 590c-8 6-16 14-24 24-46-24-78-72-78-126 0-78 64-142 142-142 42 0 80 20 106 50-8 4-18 8-28 16-20-22-46-34-78-34-60 0-110 50-110 110 0 46 30 86 70 102zM470 480c-68 0-126 56-126 124v24s2 20 2 20c-10 0-24 2-28 2-38 6-66 36-66 74 0 20 6 38 20 52s32 22 52 22h314c54 0 98-44 98-98s-44-100-98-100c-4 0-8 2-12 2l-28 4-6-28c-6-28-22-52-44-70s-50-28-78-28zM470 448v0c74 0 136 52 152 122h16c72 0 130 58 130 130s-58 132-130 132h-314c-56 0-104-48-104-106 0-54 42-102 94-106v-16c0-86 70-156 156-156z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-partlysunny-outline" + ], + "defaultCode": 62581, + "grid": 0 + }, + "properties": { + "id": 430, + "order": 431, + "ligatures": "", + "prevSize": 32, + "code": 62581, + "name": "ion-ios-partlysunny-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 429 + }, + { + "icon": { + "paths": [ + "M288 300v-108h32v108h-32zM0 512v-32h110v32h-110zM88 298l20-22 64 64-22 22zM446 360l-22-22 64-64 22 22zM112 704l-20-22 62-62 22 22zM470 448v0c74 0 136 52 152 122h16c72 0 130 58 130 130s-58 132-130 132h-314c-56 0-104-48-104-106 0-54 42-102 94-106v-16c0-86 70-156 156-156zM402 392l2 4c-62 10-124 86-124 150 0 4 2 10 2 14l-2 2h-2c-22 12-36 28-44 52v0c-46-24-78-72-78-126 0-78 64-142 142-142 42 0 78 18 104 46z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-partlysunny" + ], + "defaultCode": 62582, + "grid": 0 + }, + "properties": { + "id": 431, + "order": 432, + "ligatures": "", + "prevSize": 32, + "code": 62582, + "name": "ion-ios-partlysunny" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 430 + }, + { + "icon": { + "paths": [ + "M126 224h-94v576h94v-576zM158 192v0 640h-158v-640h158zM480 224h-94v576h94v-576zM512 192v0 640h-158v-640h158z" + ], + "width": 512, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-pause-outline" + ], + "defaultCode": 62583, + "grid": 0 + }, + "properties": { + "id": 432, + "order": 433, + "ligatures": "", + "prevSize": 32, + "code": 62583, + "name": "ion-ios-pause-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 431 + }, + { + "icon": { + "paths": [ + "M0 832v-640h158v640h-158zM354 832v-640h158v640h-158z" + ], + "width": 512, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-pause" + ], + "defaultCode": 62584, + "grid": 0 + }, + "properties": { + "id": 433, + "order": 434, + "ligatures": "", + "prevSize": 32, + "code": 62584, + "name": "ion-ios-pause" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 432 + }, + { + "icon": { + "paths": [ + "M760 392c12 34 10 76-6 114-20 50-62 86-102 86-10 0-20-2-30-6-44-20-60-90-34-158 20-56 62-92 102-92 10 0 20 2 28 6 20 8 34 26 42 50zM724 492c12-30 14-62 4-88-4-10-10-24-24-30-4-2-8-4-14-4-26 0-56 30-72 72-18 50-12 100 16 112 4 2 10 2 16 2 28 0 58-26 74-64zM180 428c26 68 10 138-34 158-10 4-20 6-30 6-40 0-82-36-102-86-16-38-18-80-6-114 8-24 22-42 42-50 8-4 18-6 28-6 40 0 82 36 102 92zM134 554c28-12 34-62 16-112-16-42-46-72-72-72-6 0-10 2-14 4-14 6-20 20-24 30-10 26-8 58 4 88 16 38 46 64 74 64 6 0 12 0 16-2zM268 422c-56-2-104-64-112-138-4-46 8-90 32-120 16-20 38-34 62-36h12c54 2 92 58 100 134 6 48-2 96-26 126-16 18-34 30-56 32-4 0-8 2-12 2zM214 184c-20 24-28 58-24 96 6 58 42 106 80 108h6c12-2 24-8 34-20 20-24 24-62 20-102-6-58-34-104-70-106h-6c-18 2-32 14-40 24zM384 480c128 0 256 152 256 298 0 44-22 80-44 94-26 18-46 24-84 24-46 0-58-16-80-30-16-10-28-20-48-20s-32 10-48 20c-22 14-34 30-80 30-38 0-58-6-84-24-22-14-44-50-44-94 0-146 128-298 256-298zM580 842c12-8 28-32 28-64 0-60-28-128-72-182-22-26-46-48-72-62-26-16-54-22-80-22s-54 6-80 22c-26 14-50 36-72 62-44 54-72 122-72 182 0 32 16 56 28 64 22 14 36 20 68 20 28 0 38-8 52-18 4-2 8-6 12-8 18-12 36-24 64-24s46 12 64 24c4 2 8 6 12 8 14 10 24 18 52 18 32 0 46-6 68-20zM488 420c-22-2-40-14-56-32-24-30-32-78-26-126 8-76 46-132 100-134h14c24 2 44 16 60 36 24 30 36 74 32 120-8 74-56 134-112 136h-12zM438 266c-4 40 0 78 20 102 10 12 22 18 34 20h6c38-2 76-50 82-108 4-38-6-72-26-96-8-10-20-22-38-24h-8c-36 2-64 48-70 106z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-paw-outline" + ], + "defaultCode": 62585, + "grid": 0 + }, + "properties": { + "id": 434, + "order": 435, + "ligatures": "", + "prevSize": 32, + "code": 62585, + "name": "ion-ios-paw-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 433 + }, + { + "icon": { + "paths": [ + "M760 392c12 34 10 76-6 114-20 50-62 86-102 86-10 0-20-2-30-6-44-20-60-90-34-158 20-56 62-92 102-92 10 0 20 2 28 6 20 8 34 26 42 50zM180 428c26 68 10 138-34 158-10 4-20 6-30 6-40 0-82-36-102-86-16-38-18-80-6-114 8-24 22-42 42-50 8-4 18-6 28-6 40 0 82 36 102 92zM268 422c-56-2-104-64-112-138-4-46 8-90 32-120 16-20 38-34 62-36h12c54 2 92 58 100 134 6 48-2 96-26 126-16 18-34 30-56 32-4 0-8 2-12 2zM384 480c128 0 256 152 256 298 0 44-22 80-44 94-26 18-46 24-84 24-46 0-58-16-80-30-16-10-28-20-48-20s-32 10-48 20c-22 14-34 30-80 30-38 0-58-6-84-24-22-14-44-50-44-94 0-146 128-298 256-298zM488 420c-22-2-40-14-56-32-24-30-32-78-26-126 8-76 46-132 100-134h14c24 2 44 16 60 36 24 30 36 74 32 120-8 74-56 134-112 136h-12z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-paw" + ], + "defaultCode": 62586, + "grid": 0 + }, + "properties": { + "id": 435, + "order": 436, + "ligatures": "", + "prevSize": 32, + "code": 62586, + "name": "ion-ios-paw" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 434 + }, + { + "icon": { + "paths": [ + "M448 224v0 0zM634 670c22 8-22-8 0 0 56 20 92 70 92 130h-556c0-44 18-84 54-110 30-22 62-24 98-32 14-2 48-10 52-26s2-30 2-46c0-6 0-6-4-10-8-8-12-18-16-28-4-16-6-32-8-48-18 4-20-32-24-42-2-8-14-48 6-42-6-10-8-26-10-38-4-26-4-52 6-78 20-52 74-78 128-76 52 2 102 32 118 84 8 24 6 52 2 78-2 10-4 22-8 30 20-6 8 40 6 46-4 10-6 42-24 38-2 20-4 44-14 62-2 4-14 16-14 20v22c0 10 0 20 4 30s20 14 28 16c28 10 54 10 82 20zM230 728c-12 12 18-20 0 0-12 12-20 24-24 40h484c-8-30-34-54-60-66s-56-8-82-18-50-18-56-50c-4-22-4-44-4-66 0-4 14-14 16-18 6-10 8-22 10-34 2-10 0-24 8-30 10-8 14-14 18-26 4-16 6-24-2-38-6-10 0-16 2-26 6-22 8-48 4-72-16-74-124-90-172-38-24 26-24 62-18 94 2 12 12 28 6 38-2 6-10 12-8 20 4 10 4 22 8 32 4 8 8 12 14 16s6 12 6 18c2 14 4 34 12 46 6 8 16 12 16 22v42c-2 16-4 36-16 48-14 12-36 20-54 24-22 6-46 6-66 14-16 6-30 16-42 28zM224 644c-30 14 18-8 0 0-18 10-36 22-50 38-2 4-12 22-14 22h-160c0-40 26-68 62-80 12-4 54-8 60-22 4-10 0-22 0-32-20 2-48-2-64-14-4-4 6-18 8-24l6-24c2-18 2-38 2-56 0-32-2-68 16-96 16-26 46-36 76-36 48 0 86 26 94 74 6 32 2 64 4 96 0 16 4 32 10 48 2 4 10 14 6 18l-12 6c-10 4-22 6-34 8-2 0-16 0-18 2s0 18 0 22c0 8 2 12 10 14 12 4 38 6 46 16 4 6 2 10-4 10-16 2-30 2-44 10zM142 672c12-20 32-36 52-48-18-18-10-52-8-74 0-4 0-10 4-10h16c12 0 22-2 34-4-14-46 0-94-10-140-6-32-30-46-62-46-34 0-54 18-60 50-8 44 6 92-8 136 18 2 34 4 52 4 2 0 2 56 2 58-2 24-16 36-38 44-24 8-58 6-72 30h98zM736 704c-4-16-20-28-32-38-16-12-36-26-56-30-6-2-32 2-26-10 4-8 18-10 26-12s30-4 32-14c0-2 2-28 0-28-12 0-24-2-36-4-8-2-14-4-22-8-12-6-4-12 0-22 28-64-20-176 64-210 30-12 68-10 96 6 30 18 40 54 40 88 0 40-8 88 14 124 4 6 8 8 0 12-4 2-8 2-12 4l-24 6s-18 2-26 2c0 8-4 26 2 34 12 14 42 14 58 20 36 12 62 40 62 80h-160zM734 650c8 8-10-10 0 0s16 22 30 22h88c-14-24-52-22-76-32-22-8-32-24-34-48 0-4-2-54 2-54 18 0 36 0 52-2-14-46 2-94-8-140-6-30-30-46-60-46-34 0-56 16-62 50-8 46 4 92-10 136 12 4 24 4 36 4s16-2 18 10c2 22 10 56-8 74 12 8 22 16 32 26z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-people-outline" + ], + "defaultCode": 62587, + "grid": 0 + }, + "properties": { + "id": 436, + "order": 437, + "ligatures": "", + "prevSize": 32, + "code": 62587, + "name": "ion-ios-people-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 435 + }, + { + "icon": { + "paths": [ + "M634 670c22 8-22-8 0 0v0zM634 670c56 20 92 70 92 130h-556c0-44 18-84 54-110 30-22 62-24 98-32 14-2 48-10 52-26s2-30 2-46c0-6 0-6-4-10-8-8-12-18-16-28-4-16-6-32-8-48-18 4-20-32-24-42-2-8-14-48 6-42-6-10-8-26-10-38-4-26-4-52 6-78 20-52 74-78 128-76 52 2 102 32 118 84 8 24 6 52 2 78-2 10-4 22-8 30 20-6 8 40 6 46-4 10-6 42-24 38-2 20-4 44-14 62-2 4-14 16-14 20v22c0 10 0 20 4 30s20 14 28 16c28 10 54 10 82 20zM222 644v0zM222 644c-18 10-34 22-48 38-2 4-12 22-14 22h-160c0-40 24-68 60-80 12-4 54-8 60-22 4-10 2-22 2-32-20 2-48-2-64-14-4-4 6-18 8-24 2-8 4-14 6-22 2-18 2-38 2-56 0-32-2-70 16-98 16-26 46-36 76-36 48 0 86 26 94 74 6 32 2 64 4 96 0 16 4 32 10 48 2 4 10 14 6 18l-12 6c-10 4-22 6-34 8-2 0-16 0-18 2s0 18 0 22c0 8 2 12 10 14 12 4 38 6 46 16 4 6 2 10-4 10-14 2-28 4-42 10 4-2 4-4-2 0-16 8-8 4-2 0zM834 624c36 12 62 40 62 80h-160c-4-16-20-28-32-38-16-12-36-26-56-30-6-2-32 2-26-10 4-8 18-10 26-12s30-4 32-14c0-2 2-28 0-28-12 0-24-2-36-4-8-2-14-4-22-8-12-6-4-12 0-22 28-64-20-176 64-210 30-12 68-10 96 6 30 18 40 54 40 88 0 40-8 88 14 124 4 6 8 8 0 12-4 2-8 2-12 4l-24 6s-18 2-26 2c0 8-4 26 2 34 12 14 42 14 58 20z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-people" + ], + "defaultCode": 62588, + "grid": 0 + }, + "properties": { + "id": 437, + "order": 438, + "ligatures": "", + "prevSize": 32, + "code": 62588, + "name": "ion-ios-people" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 436 + }, + { + "icon": { + "paths": [ + "M212 404v0 0zM534 728c26 10 106 40 106 104h-640c0-64 80-94 106-104s62-12 86-18c14-4 34-10 40-18s2-82 2-82-12-20-18-36-14-64-14-64-14 0-18-24c-4-26-12-34-12-54 0-18 10-20 10-20v0s-8-26-10-84c-2-68 50-136 148-136s150 68 148 136c-2 58-10 84-10 84v0s10 2 10 20c0 20-6 30-12 56-4 24-18 24-18 24s-8 46-14 62-18 36-18 36-4 74 2 82 26 14 40 18c24 6 60 8 86 18zM320 800v0h274c-4-6-8-12-16-16-14-10-32-18-54-26-14-4-34-8-52-10-12-2-20-4-30-6-6-2-42-10-58-30-8-10-12-24-12-64 0-20 2-40 2-40v-8l4-8c2-4 12-18 16-30 4-10 10-38 12-56 0 0 0 2 2-8s16-8 18-16 6-14 10-36-10-24-10-34c0-8 2-10 2-10v0c0-2 8-28 8-76 0-26-10-52-28-70-22-22-50-32-88-32-36 0-68 10-90 32-18 18-26 44-26 70 2 48 8 74 8 76v0s2 6 0 12c-2 10-12 10-8 32s8 28 10 36 16 6 18 16 2 8 2 8c2 18 8 46 12 56 4 12 12 26 16 30l4 8v8s2 20 2 40c0 40-4 54-12 64-16 20-52 28-58 30-10 2-20 4-32 6-18 2-36 6-50 10-22 8-40 16-54 26-8 4-12 10-16 16h274z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-person-outline" + ], + "defaultCode": 62589, + "grid": 0 + }, + "properties": { + "id": 438, + "order": 439, + "ligatures": "", + "prevSize": 32, + "code": 62589, + "name": "ion-ios-person-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 437 + }, + { + "icon": { + "paths": [ + "M534 728c26 10 106 40 106 104h-640c0-64 80-94 106-104s62-12 86-18c14-4 34-10 40-18s2-82 2-82-12-20-18-36-14-64-14-64-14 0-18-24c-4-26-12-34-12-54 0-18 10-20 10-20v0s-8-26-10-84c-2-68 50-136 148-136s150 68 148 136c-2 58-10 84-10 84v0s10 2 10 20c0 20-6 30-12 56-4 24-18 24-18 24s-8 46-14 62-18 36-18 36-4 74 2 82 26 14 40 18c24 6 60 8 86 18z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-person" + ], + "defaultCode": 62590, + "grid": 0 + }, + "properties": { + "id": 439, + "order": 440, + "ligatures": "", + "prevSize": 32, + "code": 62590, + "name": "ion-ios-person" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 438 + }, + { + "icon": { + "paths": [ + "M640 306v28h-50v50h-28v-50h-50v-28h50v-50h28v50h50zM212 404v0 0zM534 728c26 10 106 40 106 104h-640c0-64 80-94 106-104s62-12 86-18c14-4 34-10 40-18s2-82 2-82-12-20-18-36-14-64-14-64-14 0-18-24c-4-26-12-34-12-54 0-18 10-20 10-20v0s-8-26-10-84c-2-68 50-136 148-136s150 68 148 136c-2 58-10 84-10 84v0s10 2 10 20c0 20-6 30-12 56-4 24-18 24-18 24s-8 46-14 62-18 36-18 36-4 74 2 82 26 14 40 18c24 6 60 8 86 18zM320 800v0h274c-4-6-8-12-16-16-14-10-32-18-54-26-14-4-34-8-52-10-12-2-20-4-30-6-6-2-42-10-58-30-8-10-12-24-12-64 0-20 2-40 2-40v-8l4-8c2-4 12-18 16-30 4-10 10-38 12-56 0 0 0 2 2-8s16-8 18-16 6-14 10-36-10-24-10-34c0-8 2-10 2-10v0c0-2 8-28 8-76 0-26-10-52-28-70-22-22-50-32-88-32-36 0-68 10-90 32-18 18-26 44-26 70 2 48 8 74 8 76v0s2 6 0 12c-2 10-12 10-8 32s8 28 10 36 16 6 18 16 2 8 2 8c2 18 8 46 12 56 4 12 12 26 16 30l4 8v8s2 20 2 40c0 40-4 54-12 64-16 20-52 28-58 30-10 2-20 4-32 6-18 2-36 6-50 10-22 8-40 16-54 26-8 4-12 10-16 16h274z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-personadd-outline" + ], + "defaultCode": 62591, + "grid": 0 + }, + "properties": { + "id": 440, + "order": 441, + "ligatures": "", + "prevSize": 32, + "code": 62591, + "name": "ion-ios-personadd-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 439 + }, + { + "icon": { + "paths": [ + "M640 306v28h-50v50h-28v-50h-50v-28h50v-50h28v50h50zM534 728c26 10 106 40 106 104h-640c0-64 80-94 106-104s62-12 86-18c14-4 34-10 40-18s2-82 2-82-12-20-18-36-14-64-14-64-14 0-18-24c-4-26-12-34-12-54 0-18 10-20 10-20v0s-8-26-10-84c-2-68 50-136 148-136s150 68 148 136c-2 58-10 84-10 84v0s10 2 10 20c0 20-6 30-12 56-4 24-18 24-18 24s-8 46-14 62-18 36-18 36-4 74 2 82 26 14 40 18c24 6 60 8 86 18z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-personadd" + ], + "defaultCode": 62592, + "grid": 0 + }, + "properties": { + "id": 441, + "order": 442, + "ligatures": "", + "prevSize": 32, + "code": 62592, + "name": "ion-ios-personadd" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 440 + }, + { + "icon": { + "paths": [ + "M128 256h768v640h-768v-640zM864 864v-576h-704v576h704zM0 128h768v96h-32v-64h-704v576h64v32h-96v-640z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-photos-outline" + ], + "defaultCode": 62593, + "grid": 0 + }, + "properties": { + "id": 442, + "order": 443, + "ligatures": "", + "prevSize": 32, + "code": 62593, + "name": "ion-ios-photos-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 441 + }, + { + "icon": { + "paths": [ + "M128 256h768v640h-768v-640zM768 128v96h-672v544h-96v-640h768z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-photos" + ], + "defaultCode": 62594, + "grid": 0 + }, + "properties": { + "id": 443, + "order": 444, + "ligatures": "", + "prevSize": 32, + "code": 62594, + "name": "ion-ios-photos" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 442 + }, + { + "icon": { + "paths": [ + "M512 162v0 438l-24 8-360 90c12 26 26 50 42 72 24 32 50 60 82 84 66 48 146 74 228 74 52 0 102-10 150-30 46-20 86-46 122-82s62-76 82-122c20-48 30-98 30-150 0-102-40-200-112-272-64-64-150-102-240-110zM480 128v0c230 0 416 186 416 416s-186 416-416 416c-184 0-342-120-396-286l396-98v-448zM416 96c-62 2-120 14-170 36-48 22-88 52-122 92-58 68-92 160-92 254v0 0c0 26 6 92 24 140l360-92v-430zM448 64v0 488l-410 104c-38-64-38-178-38-178 0-182 116-414 436-414h12z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-pie-outline" + ], + "defaultCode": 62595, + "grid": 0 + }, + "properties": { + "id": 444, + "order": 445, + "ligatures": "", + "prevSize": 32, + "code": 62595, + "name": "ion-ios-pie-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 443 + }, + { + "icon": { + "paths": [ + "M480 128v0c230 0 416 186 416 416s-186 416-416 416c-184 0-342-120-396-286l396-98v-448zM448 64v0 488l-410 104c-38-64-38-178-38-178 0-182 116-414 436-414h12z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-pie" + ], + "defaultCode": 62596, + "grid": 0 + }, + "properties": { + "id": 445, + "order": 446, + "ligatures": "", + "prevSize": 32, + "code": 62596, + "name": "ion-ios-pie" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 444 + }, + { + "icon": { + "paths": [ + "M448 340c0 196-64 202-64 362 0 80 32 142 32 198 0 54-18 60-64 60h-256c-46 0-64-4-64-58 0-56 32-120 32-200 0-160-64-166-64-362 0-42 2-178 38-250 8-18 26-26 64-26h244c38 0 56 8 64 26 36 72 38 208 38 250zM68 104c-16 32-28 86-34 152h380c-6-66-18-120-34-152-2-4-2-2-4-4-4-2-12-4-30-4h-244c-18 0-26 2-30 4-2 2-2 0-4 4zM382 926c0-2 2-10 2-26 0-22-8-46-14-74-8-36-18-78-18-124 0-82 16-128 32-172 16-46 32-92 32-190 0-18-2-36-2-52h-380c0 16-2 34-2 52 0 98 16 144 32 190 16 44 32 90 32 172 0 46-10 88-18 124-6 28-14 52-14 74 0 16 2 24 2 26 4 2 14 2 30 2h256c16 0 26 0 30-2z" + ], + "width": 448, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-pint-outline" + ], + "defaultCode": 62597, + "grid": 0 + }, + "properties": { + "id": 446, + "order": 447, + "ligatures": "", + "prevSize": 32, + "code": 62597, + "name": "ion-ios-pint-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 445 + }, + { + "icon": { + "paths": [ + "M448 340c0 196-64 202-64 362 0 80 32 142 32 198 0 54-18 60-64 60h-256c-46 0-64-4-64-58 0-56 32-120 32-200 0-160-64-166-64-362 0-42 2-178 38-250 8-18 26-26 64-26h244c38 0 56 8 64 26 36 72 38 208 38 250zM68 104c-16 32-28 86-34 152h380c-6-66-18-120-34-152-2-4-2-2-4-4-4-2-12-4-30-4h-244c-18 0-26 2-30 4-2 2-2 0-4 4z" + ], + "width": 448, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-pint" + ], + "defaultCode": 62598, + "grid": 0 + }, + "properties": { + "id": 447, + "order": 448, + "ligatures": "", + "prevSize": 32, + "code": 62598, + "name": "ion-ios-pint" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 446 + }, + { + "icon": { + "paths": [ + "M32 250v524l420-262zM0 192v0l512 320-512 320v-640z" + ], + "width": 512, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-play-outline" + ], + "defaultCode": 62599, + "grid": 0 + }, + "properties": { + "id": 448, + "order": 449, + "ligatures": "", + "prevSize": 32, + "code": 62599, + "name": "ion-ios-play-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 447 + }, + { + "icon": { + "paths": [ + "M0 192v0l512 320-512 320v-640z" + ], + "width": 512, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-play" + ], + "defaultCode": 62600, + "grid": 0 + }, + "properties": { + "id": 449, + "order": 450, + "ligatures": "", + "prevSize": 32, + "code": 62600, + "name": "ion-ios-play" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 448 + }, + { + "icon": { + "paths": [ + "M512 530h-240v238h-34v-238h-238v-34h238v-240h34v240h240v34z" + ], + "width": 512, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-plus-empty" + ], + "defaultCode": 62601, + "grid": 0 + }, + "properties": { + "id": 450, + "order": 451, + "ligatures": "", + "prevSize": 32, + "code": 62601, + "name": "ion-ios-plus-empty" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 449 + }, + { + "icon": { + "paths": [ + "M416 96c230 0 416 186 416 416s-186 416-416 416-416-186-416-416 186-416 416-416zM416 894c210 0 382-172 382-382s-172-382-382-382-382 172-382 382 172 382 382 382zM432 256v240h240v34h-240v238h-34v-238h-238v-34h238v-240h34z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-plus-outline" + ], + "defaultCode": 62602, + "grid": 0 + }, + "properties": { + "id": 451, + "order": 452, + "ligatures": "", + "prevSize": 32, + "code": 62602, + "name": "ion-ios-plus-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 450 + }, + { + "icon": { + "paths": [ + "M416 96c230 0 416 186 416 416s-186 416-416 416-416-186-416-416 186-416 416-416zM672 530v-34h-240v-240h-34v240h-238v34h238v238h34v-238h240z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-plus" + ], + "defaultCode": 62603, + "grid": 0 + }, + "properties": { + "id": 452, + "order": 453, + "ligatures": "", + "prevSize": 32, + "code": 62603, + "name": "ion-ios-plus" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 451 + }, + { + "icon": { + "paths": [ + "M832 64v320l-512 576-320-320 512-576h320zM800 368v-272h-272l-480 544 272 272zM640 320c-36 0-64-28-64-64s28-64 64-64 64 28 64 64-28 64-64 64zM640 224c-18 0-32 14-32 32s14 32 32 32 32-14 32-32-14-32-32-32z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-pricetag-outline" + ], + "defaultCode": 62604, + "grid": 0 + }, + "properties": { + "id": 453, + "order": 454, + "ligatures": "", + "prevSize": 32, + "code": 62604, + "name": "ion-ios-pricetag-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 452 + }, + { + "icon": { + "paths": [ + "M608 256c0-22 10-32 32-32s32 10 32 32-10 32-32 32-32-10-32-32zM512 64h320v320l-512 576-320-320zM640 320c18 0 32-8 44-20s20-26 20-44-8-32-20-44-26-20-44-20-32 8-44 20-20 26-20 44 8 32 20 44 26 20 44 20z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-pricetag" + ], + "defaultCode": 62605, + "grid": 0 + }, + "properties": { + "id": 454, + "order": 455, + "ligatures": "", + "prevSize": 32, + "code": 62605, + "name": "ion-ios-pricetag" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 453 + }, + { + "icon": { + "paths": [ + "M832 128h64v288l-480 544-50-48-46 48-320-320 512-576h320v64zM320 914l24-24 22-24 434-496v-274h-274l-482 544zM864 402v-242h-32v224l-442 506 26 24zM640 320c-36 0-64-28-64-64s28-64 64-64 64 28 64 64-28 64-64 64zM640 224c-18 0-32 14-32 32s14 32 32 32 32-14 32-32-14-32-32-32z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-pricetags-outline" + ], + "defaultCode": 62606, + "grid": 0 + }, + "properties": { + "id": 455, + "order": 456, + "ligatures": "", + "prevSize": 32, + "code": 62606, + "name": "ion-ios-pricetags-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 454 + }, + { + "icon": { + "paths": [ + "M864 128h32v288l-480 544-26-26 474-532v-274zM512 64h320v320l-442 506-24 22-46 48-320-320zM640 320c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM608 256c0-22 10-32 32-32s32 10 32 32-10 32-32 32-32-10-32-32z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-pricetags" + ], + "defaultCode": 62607, + "grid": 0 + }, + "properties": { + "id": 456, + "order": 457, + "ligatures": "", + "prevSize": 32, + "code": 62607, + "name": "ion-ios-pricetags" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 455 + }, + { + "icon": { + "paths": [ + "M768 224c36 0 64 26 64 62v318c0 36-28 64-64 64h-96v228h-512v-228h-96c-36 0-64-28-64-64v-318c0-36 28-62 64-62h64v-96h576v96h64zM160 160v64h512v-64h-512zM640 864v-384h-448v384h448zM800 604v-318c0-18-14-30-32-30v0h-704c-18 0-32 12-32 30v318c0 18 14 32 32 32h96v-188h512v188h96c18 0 32-14 32-32z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-printer-outline" + ], + "defaultCode": 62608, + "grid": 0 + }, + "properties": { + "id": 457, + "order": 458, + "ligatures": "", + "prevSize": 32, + "code": 62608, + "name": "ion-ios-printer-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 456 + }, + { + "icon": { + "paths": [ + "M160 896v-448h512v448h-512zM160 896v-448h512v448h-512zM128 192v-64h576v64h-576zM770 224c36 0 62 28 62 62v316c0 34-26 68-62 68h-66v-252h-576v252h-62c-36 0-66-34-66-68v-316c0-34 30-62 66-62h704z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-printer" + ], + "defaultCode": 62609, + "grid": 0 + }, + "properties": { + "id": 458, + "order": 459, + "ligatures": "", + "prevSize": 32, + "code": 62609, + "name": "ion-ios-printer" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 457 + }, + { + "icon": { + "paths": [ + "M864 546c54 0 96 40 96 94s-42 98-96 98c-42 0-76-26-90-62h-102c-14 0-26-8-30-22l-32-94-100 346c-4 14-16 22-30 22h-2c-14 0-28-10-30-24l-102-616-90 364c-4 14-18 24-32 24h-224v-64h198l122-490c4-14 16-26 32-26s30 14 32 28l104 628 90-310c4-14 16-22 30-22v0c14 0 26 8 30 22l58 170h76c12-38 50-66 92-66z" + ], + "width": 960, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-pulse-strong" + ], + "defaultCode": 62610, + "grid": 0 + }, + "properties": { + "id": 459, + "order": 460, + "ligatures": "", + "prevSize": 32, + "code": 62610, + "name": "ion-ios-pulse-strong" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 458 + }, + { + "icon": { + "paths": [ + "M832 576c36 0 64 28 64 64s-28 64-64 64c-30 0-54-20-62-46h-130c-6 0-14-4-16-10l-46-144-114 396c-2 6-8 12-16 12v0c-8 0-14-6-16-14l-116-692-108 440c-2 8-8 12-16 12h-192v-32h180l124-502c2-8 8-12 16-12s14 6 16 14l116 698 108-380c2-6 8-10 16-10s14 4 16 10l60 182h118c6-28 32-50 62-50z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-pulse" + ], + "defaultCode": 62611, + "grid": 0 + }, + "properties": { + "id": 460, + "order": 461, + "ligatures": "", + "prevSize": 32, + "code": 62611, + "name": "ion-ios-pulse" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 459 + }, + { + "icon": { + "paths": [ + "M440 358c76 0 136 66 136 142 0 58-38 112-90 132l-110 160c-4 4-10 8-16 8-10 0-16-6-16-16 0-4 2-8 4-12l92-132h-70l-62 88c-4 4-8 8-14 8-10 0-18-6-18-16 0-4 2-6 4-10l50-70h-74l-106 152c-4 4-8 8-14 8-10 0-18-6-18-16 0-4 4-8 6-12l92-132h-72l-64 88c-4 4-8 8-14 8-10 0-16-6-16-16 0-4 2-8 4-12l50-68c-58-4-104-54-104-112 0-56 44-116 100-120 0-6-2-10-2-16 0-92 62-168 164-168 90 0 146 62 162 136 6 0 10-2 16-2zM440 604c56 0 104-48 104-104s-48-108-104-108h-12l-30 4-6-30c-6-28-22-62-46-80-24-20-52-28-82-28-72 0-132 62-132 134v44c-12 0-24 4-28 4-40 6-70 46-70 86 0 20 8 40 22 54s32 24 52 24h332z" + ], + "width": 576, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-rainy-outline" + ], + "defaultCode": 62612, + "grid": 0 + }, + "properties": { + "id": 461, + "order": 462, + "ligatures": "", + "prevSize": 32, + "code": 62612, + "name": "ion-ios-rainy-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 460 + }, + { + "icon": { + "paths": [ + "M440 358c76 0 136 66 136 142 0 58-38 112-90 132l-110 160c-4 4-10 8-16 8-10 0-16-6-16-16 0-4 2-8 4-12l92-132h-70l-62 88c-4 4-8 8-14 8-10 0-18-6-18-16 0-4 2-6 4-10l50-70h-74l-106 152c-4 4-8 8-14 8-10 0-18-6-18-16 0-4 4-8 6-12l92-132h-72l-64 88c-4 4-8 8-14 8-10 0-16-6-16-16 0-4 2-8 4-12l50-68c-58-4-104-54-104-112 0-56 44-116 100-120 0-6-2-10-2-16 0-92 62-168 164-168 90 0 146 62 162 136 6 0 10-2 16-2z" + ], + "width": 576, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-rainy" + ], + "defaultCode": 62613, + "grid": 0 + }, + "properties": { + "id": 462, + "order": 463, + "ligatures": "", + "prevSize": 32, + "code": 62613, + "name": "ion-ios-rainy" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 461 + }, + { + "icon": { + "paths": [ + "M740 288c122 0 220 100 220 224s-98 224-220 224h-520c-122 0-220-100-220-224s98-224 220-224 220 100 220 224c0 80-42 150-106 190h292c-64-40-106-110-106-190 0-124 98-224 220-224zM32 512c0 106 84 190 188 190s186-84 186-190-82-190-186-190-188 84-188 190zM740 702c104 0 188-84 188-190s-84-190-188-190-186 84-186 190 82 190 186 190zM736 416c-52 0-96 44-96 96s44 96 96 96 96-44 96-96-44-96-96-96zM736 384v0c70 0 128 58 128 128s-58 128-128 128-128-58-128-128 58-128 128-128zM224 416c-52 0-96 44-96 96s44 96 96 96 96-44 96-96-44-96-96-96zM224 384v0c70 0 128 58 128 128s-58 128-128 128-128-58-128-128 58-128 128-128z" + ], + "width": 960, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-recording-outline" + ], + "defaultCode": 62614, + "grid": 0 + }, + "properties": { + "id": 463, + "order": 464, + "ligatures": "", + "prevSize": 32, + "code": 62614, + "name": "ion-ios-recording-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 462 + }, + { + "icon": { + "paths": [ + "M740 288c122 0 220 100 220 224s-98 224-220 224h-520c-122 0-220-100-220-224s98-224 220-224 220 100 220 224c0 80-42 152-106 190h292c-64-38-106-110-106-190 0-124 98-224 220-224zM224 640c70 0 128-58 128-128s-58-128-128-128-128 58-128 128 58 128 128 128zM736 640c70 0 128-58 128-128s-58-128-128-128-128 58-128 128 58 128 128 128zM736 416c52 0 96 44 96 96s-44 96-96 96-96-44-96-96 44-96 96-96zM224 416c52 0 96 44 96 96s-44 96-96 96-96-44-96-96 44-96 96-96z" + ], + "width": 960, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-recording" + ], + "defaultCode": 62615, + "grid": 0 + }, + "properties": { + "id": 464, + "order": 465, + "ligatures": "", + "prevSize": 32, + "code": 62615, + "name": "ion-ios-recording" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 463 + }, + { + "icon": { + "paths": [ + "M0 800v-64c0-34-6-166 98-272 70-72 160-106 286-112v-160l384 256-384 256v-160c-80 2-126 18-174 40-62 28-110 88-150 154l-40 62h-20zM416 384c-402 0-384 338-384 338 96-162 202-210 384-210v130l296-194-296-194v130z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-redo-outline" + ], + "defaultCode": 62616, + "grid": 0 + }, + "properties": { + "id": 465, + "order": 466, + "ligatures": "", + "prevSize": 32, + "code": 62616, + "name": "ion-ios-redo-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 464 + }, + { + "icon": { + "paths": [ + "M0 800v-64c0-34-6-166 98-272 70-72 160-106 286-112v-160l384 256-384 256v-160c-80 2-126 18-174 40-62 28-110 88-150 154l-40 62h-20z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-redo" + ], + "defaultCode": 62617, + "grid": 0 + }, + "properties": { + "id": 466, + "order": 467, + "ligatures": "", + "prevSize": 32, + "code": 62617, + "name": "ion-ios-redo" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 465 + }, + { + "icon": { + "paths": [ + "M256 768c-142 0-256-114-256-256s114-256 256-256v-88l192 128-192 112v-112c-120 0-216 96-216 216s96 216 216 216 216-96 216-216h40c0 142-114 256-256 256z" + ], + "width": 512, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-refresh-empty" + ], + "defaultCode": 62618, + "grid": 0 + }, + "properties": { + "id": 467, + "order": 468, + "ligatures": "", + "prevSize": 32, + "code": 62618, + "name": "ion-ios-refresh-empty" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 466 + }, + { + "icon": { + "paths": [ + "M632 512v0h40c0 142-114 256-256 256s-256-114-256-256 114-256 256-256v-88l192 128-192 112v-112c-120 0-216 96-216 216s96 216 216 216 216-96 216-216zM416 96c230 0 416 186 416 416s-186 416-416 416-416-186-416-416 186-416 416-416zM416 894c210 0 382-172 382-382s-172-382-382-382-382 172-382 382 172 382 382 382z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-refresh-outline" + ], + "defaultCode": 62619, + "grid": 0 + }, + "properties": { + "id": 468, + "order": 469, + "ligatures": "", + "prevSize": 32, + "code": 62619, + "name": "ion-ios-refresh-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 467 + }, + { + "icon": { + "paths": [ + "M416 96c230 0 416 186 416 416s-186 416-416 416-416-186-416-416 186-416 416-416zM416 768c142 0 256-114 256-256h-40c0 120-96 216-216 216s-216-96-216-216 96-216 216-216v112l192-112-192-128v88c-142 0-256 114-256 256s114 256 256 256z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-refresh" + ], + "defaultCode": 62620, + "grid": 0 + }, + "properties": { + "id": 469, + "order": 470, + "ligatures": "", + "prevSize": 32, + "code": 62620, + "name": "ion-ios-refresh" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 468 + }, + { + "icon": { + "paths": [ + "M384 128c212 0 384 172 384 384l110-106 18 18-140 136-134-136 18-18 102 104c0-196-160-356-358-356s-358 160-358 358 160 358 358 358c158 0 292-100 340-242l24 6c-52 152-194 262-364 262-212 0-384-172-384-384s172-384 384-384z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-reload" + ], + "defaultCode": 62621, + "grid": 0 + }, + "properties": { + "id": 470, + "order": 471, + "ligatures": "", + "prevSize": 32, + "code": 62621, + "name": "ion-ios-reload" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 469 + }, + { + "icon": { + "paths": [ + "M476 638l4-4 22 24-4 4c-32 28-72 42-114 42-90 0-164-72-174-156h-60l76-100 78 100h-62c10 66 70 124 142 124 34 0 66-12 92-34zM504 398c32 28 50 74 54 114h60l-76 102-78-102h62c-10-70-70-128-142-128-34 0-66 12-92 34l-4 4-22-24 4-4c32-28 72-42 114-42 44 0 88 16 120 46zM708 320c36 0 60 28 60 62v352c0 34-24 66-60 66h-640c-36 0-68-32-68-66v-352c0-34 32-62 68-62h26v-32h68v32h26c64-72 86-96 110-96h176c24 0 46 24 110 96h124zM736 734v-352c0-18-10-30-28-30h-136s-8-2-12-6-12-16-18-22c-24-26-42-48-54-60-10-10-14-8-14-8h-176s-2 0-12 8c-12 10-30 28-52 54-6 8-16 22-22 28s-8 6-12 6h-132c-18 0-36 14-36 30v352c0 18 18 34 36 34h640c16 0 28-16 28-34z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-reverse-camera-outline" + ], + "defaultCode": 62622, + "grid": 0 + }, + "properties": { + "id": 471, + "order": 472, + "ligatures": "", + "prevSize": 32, + "code": 62622, + "name": "ion-ios-reverse-camera-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 470 + }, + { + "icon": { + "paths": [ + "M708 320c36 0 60 28 60 62v352c0 34-24 66-60 66h-640c-36 0-68-32-68-66v-352c0-34 32-62 68-62h26v-32h68v32h26c64-72 86-96 110-96h176c24 0 46 24 110 96h124zM498 662l4-4-22-24-4 4c-26 22-58 34-92 34-72 0-132-58-142-124h62l-78-100-76 100h60c10 84 84 156 174 156 42 0 82-14 114-42zM542 614l76-102h-60c-4-40-22-86-54-114-32-30-76-46-120-46-42 0-82 14-114 42l-4 4 22 24 4-4c26-22 58-34 92-34 72 0 132 58 142 128h-62z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-reverse-camera" + ], + "defaultCode": 62623, + "grid": 0 + }, + "properties": { + "id": 472, + "order": 473, + "ligatures": "", + "prevSize": 32, + "code": 62623, + "name": "ion-ios-reverse-camera" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 471 + }, + { + "icon": { + "paths": [ + "M864 310l-368 202 368 202v-404zM416 312v0l-352 200 352 200v-400zM448 256v0 246l448-246v512l-448-246v246l-448-256z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-rewind-outline" + ], + "defaultCode": 62624, + "grid": 0 + }, + "properties": { + "id": 473, + "order": 474, + "ligatures": "", + "prevSize": 32, + "code": 62624, + "name": "ion-ios-rewind-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 472 + }, + { + "icon": { + "paths": [ + "M448 256v0 246l448-246v512l-448-246v246l-448-256z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-rewind" + ], + "defaultCode": 62625, + "grid": 0 + }, + "properties": { + "id": 474, + "order": 475, + "ligatures": "", + "prevSize": 32, + "code": 62625, + "name": "ion-ios-rewind" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 473 + }, + { + "icon": { + "paths": [ + "M568 306c-8 2-18 6-26 8-74 22-142 48-206 78-34 16-48 24-88 48l-14 8c-62 36-100 66-126 102-30 42-44 90-44 154 0 32 6 60 18 88 12 26 28 52 50 72 46 42 110 64 188 64s142-22 188-64c22-20 38-46 50-72 12-28 18-56 18-88 0-40-10-80-22-120-22-80-46-166 14-278zM640 256v0c-154 192-32 302-32 448s-112 256-288 256-288-110-288-256 70-218 186-284c50-28 66-38 104-56 60-28 130-56 210-80 34-10 70-20 108-28zM76 246c28 56 36 114 38 166 18-14 40-26 60-40 14-8 28-18 42-26 10-6 20-12 32-18-10-8-22-14-34-22-44-26-96-46-138-60zM0 192v0s132 30 230 86c30 16 56 36 74 58-24 12-48 24-72 38-14 8-28 16-40 24-50 32-88 62-114 84 10-82 4-196-78-290zM498 162c-16 2-40 4-70 14-50 16-94 40-128 72 16 12 30 24 42 36 58-24 130-52 190-68-10-20-24-40-34-54zM512 128v0s52 64 64 110c-66 16-168 50-242 84l-6-6c-18-22-44-44-78-64 104-120 262-124 262-124zM170 108c-12 20-20 40-28 56 24 8 44 20 72 34 8-10 18-20 28-28-26-30-54-50-72-62zM160 64v0s70 32 128 112c-24 18-46 40-66 62-52-26-80-42-122-54 10-30 30-76 60-120z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-rose-outline" + ], + "defaultCode": 62626, + "grid": 0 + }, + "properties": { + "id": 475, + "order": 476, + "ligatures": "", + "prevSize": 32, + "code": 62626, + "name": "ion-ios-rose-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 474 + }, + { + "icon": { + "paths": [ + "M640 256v0c-154 192-32 302-32 448s-112 256-288 256-288-110-288-256 70-218 186-284c50-28 66-38 104-56 60-28 130-56 210-80 34-10 70-20 108-28zM0 192v0s132 30 230 86c30 16 56 36 74 58-24 12-48 24-72 38-14 8-28 16-40 24-50 32-88 62-114 84 10-82 4-196-78-290zM512 128v0s52 64 64 110c-66 16-168 50-242 84l-6-6c-18-22-44-44-78-64 104-120 262-124 262-124zM160 64v0s70 32 128 112c-24 18-46 40-66 62-52-26-80-42-122-54 10-30 30-76 60-120z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-rose" + ], + "defaultCode": 62627, + "grid": 0 + }, + "properties": { + "id": 476, + "order": 477, + "ligatures": "", + "prevSize": 32, + "code": 62627, + "name": "ion-ios-rose" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 475 + }, + { + "icon": { + "paths": [ + "M560 596l-8 14 216 218-68 68-216-218-14 10c-48 30-106 50-166 50-168 0-304-138-304-306s136-304 304-304 304 136 304 304c0 60-18 116-48 164zM474 262c-46-46-106-70-170-70s-124 24-170 70-70 106-70 170 24 124 70 170 106 70 170 70 124-24 170-70 72-106 72-170-26-124-72-170z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-search-strong" + ], + "defaultCode": 62628, + "grid": 0 + }, + "properties": { + "id": 477, + "order": 478, + "ligatures": "", + "prevSize": 32, + "code": 62628, + "name": "ion-ios-search-strong" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 476 + }, + { + "icon": { + "paths": [ + "M768 850l-46 46-226-226c-52 42-120 66-192 66-168 0-304-136-304-304s136-304 304-304 304 136 304 304c0 72-24 138-66 190zM112 626c52 52 120 78 192 78s140-28 192-80 80-120 80-192-28-140-80-192-120-80-192-80-140 28-192 80-80 120-80 192 28 142 80 194z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-search" + ], + "defaultCode": 62629, + "grid": 0 + }, + "properties": { + "id": 478, + "order": 479, + "ligatures": "", + "prevSize": 32, + "code": 62629, + "name": "ion-ios-search" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 477 + }, + { + "icon": { + "paths": [ + "M0 752h566c12-28 42-48 74-48s62 20 74 48h182v64h-182c-12 28-42 48-74 48s-62-20-74-48h-566zM0 480h182c12-28 42-48 74-48s62 20 74 48h566v64h-566c-12 28-42 48-74 48s-62-20-74-48h-182zM0 208h566c12-28 42-48 74-48s62 20 74 48h182v64h-182c-12 28-42 48-74 48s-62-20-74-48h-566z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-settings-strong" + ], + "defaultCode": 62630, + "grid": 0 + }, + "properties": { + "id": 479, + "order": 480, + "ligatures": "", + "prevSize": 32, + "code": 62630, + "name": "ion-ios-settings-strong" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 478 + }, + { + "icon": { + "paths": [ + "M640 208c-18 0-32 14-32 32s14 32 32 32 32-14 32-32-14-32-32-32zM640 176v0c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM640 752c-18 0-32 14-32 32s14 32 32 32 32-14 32-32-14-32-32-32zM640 720v0c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM256 480c-18 0-32 14-32 32s14 32 32 32 32-14 32-32-14-32-32-32zM256 448v0c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM350 496h546v32h-546c0-6 2-10 2-16s-2-10-2-16zM160 512c0 6 2 10 2 16h-162v-32h162c0 6-2 10-2 16zM734 768h162v32h-162c0-6 2-10 2-16s-2-10-2-16zM544 784c0 6 2 10 2 16h-546v-32h546c0 6-2 10-2 16zM734 224h162v32h-162c0-6 2-10 2-16s-2-10-2-16zM546 224c0 6-2 10-2 16s2 10 2 16h-546v-32h546z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-settings" + ], + "defaultCode": 62631, + "grid": 0 + }, + "properties": { + "id": 480, + "order": 481, + "ligatures": "", + "prevSize": 32, + "code": 62631, + "name": "ion-ios-settings" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 479 + }, + { + "icon": { + "paths": [ + "M602 304c-170 0-238 128-304 252-2 6-6 10-8 16l-2 2c-4 6-4 10-8 16-42 76-86 136-136 166-30 18-68 36-144 36v-64c90 0 152-36 224-168 4-6 4-12 8-18h2c2-4 6-8 8-14 68-128 152-288 360-288h30l-104-86 42-50 198 168-198 164-42-48 102-84h-28zM570 588l198 164-198 168-42-50 104-86h-30c-156 0-244-90-306-190l36-66c58 102 128 192 270 192h28l-102-84zM224 464c-72-132-134-168-224-168v-64c76 0 114 18 144 36 50 30 94 88 134 162-14 22-26 44-38 66-2-4-4-10-6-14h-2c-4-6-4-12-8-18z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-shuffle-strong" + ], + "defaultCode": 62632, + "grid": 0 + }, + "properties": { + "id": 481, + "order": 482, + "ligatures": "", + "prevSize": 32, + "code": 62632, + "name": "ion-ios-shuffle-strong" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 480 + }, + { + "icon": { + "paths": [ + "M596 414l-20-24 124-102h-92c-186 0-258 150-328 278-4 6-6 12-10 18-40 74-82 122-130 150-28 16-66 34-140 34v-32c96 0 166-28 242-168 4-6 6-12 10-18 70-130 150-294 356-294h92l-124-104 20-24 172 144zM270 440c0 2 2 4 2 6-6 10-12 22-18 32 0-2-2-2-2-4-4-6-6-12-10-18-76-140-146-168-242-168v-32c74 0 112 18 140 34 48 28 90 76 130 150zM596 610l172 142-172 144-20-24 124-104h-92c-152 0-236-90-298-190 2-4 4-10 6-14 4-6 8-14 12-20 60 100 134 192 280 192h92l-124-102z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-shuffle" + ], + "defaultCode": 62633, + "grid": 0 + }, + "properties": { + "id": 482, + "order": 483, + "ligatures": "", + "prevSize": 32, + "code": 62633, + "name": "ion-ios-shuffle" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 481 + }, + { + "icon": { + "paths": [ + "M0 192h158v284l482-284v640l-482-284v284h-158v-640zM160 512l14 8 434 256v-528l-434 256zM32 224v576h94v-576h-94z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-skipbackward-outline" + ], + "defaultCode": 62634, + "grid": 0 + }, + "properties": { + "id": 483, + "order": 484, + "ligatures": "", + "prevSize": 32, + "code": 62634, + "name": "ion-ios-skipbackward-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 482 + }, + { + "icon": { + "paths": [ + "M0 192h158v284l482-284v640l-482-284v284h-158v-640z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-skipbackward" + ], + "defaultCode": 62635, + "grid": 0 + }, + "properties": { + "id": 484, + "order": 485, + "ligatures": "", + "prevSize": 32, + "code": 62635, + "name": "ion-ios-skipbackward" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 483 + }, + { + "icon": { + "paths": [ + "M482 192h158v640h-158v-284l-482 284v-640l482 284v-284zM466 520l14-8-14-8-434-256v528zM608 800v-576h-94v576h94z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-skipforward-outline" + ], + "defaultCode": 62636, + "grid": 0 + }, + "properties": { + "id": 485, + "order": 486, + "ligatures": "", + "prevSize": 32, + "code": 62636, + "name": "ion-ios-skipforward-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 484 + }, + { + "icon": { + "paths": [ + "M482 192h158v640h-158v-284l-482 284v-640l482 284v-284z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-skipforward" + ], + "defaultCode": 62637, + "grid": 0 + }, + "properties": { + "id": 486, + "order": 487, + "ligatures": "", + "prevSize": 32, + "code": 62637, + "name": "ion-ios-skipforward" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 485 + }, + { + "icon": { + "paths": [ + "M504 634c8 4 10 14 6 22s-14 10-22 6l-58-34c-4 16-4 32 0 48 2 8-6 18-14 20s-16-4-18-12c-4-24-6-48 2-72l-128-72v146c22 6 44 16 62 32 6 6 8 16 2 22s-16 8-22 2c-12-10-26-20-42-24v66c0 8-8 16-16 16s-16-8-16-16v-66c-16 4-30 14-42 24-6 6-16 4-22-2s-6-16 0-22c18-16 40-26 64-32v-146l-130 72c8 24 8 46 4 70-2 8-10 16-18 14s-16-12-14-20c4-16 4-32 0-48l-58 34c-8 4-18 2-22-6s-2-18 6-22l58-32c-12-12-26-20-42-26-8-2-12-12-10-20 4-8 12-12 20-10 24 8 44 22 60 38l130-72-130-74c-16 18-36 30-60 38-8 2-18 0-20-8s2-20 10-22c16-6 30-12 42-24l-58-32c-8-4-10-14-6-22s14-10 22-6l58 32c4-16 4-30 0-46-2-8 6-18 14-20s16 4 18 12c4 24 2 50-4 72l130 72v-146c-24-6-46-16-64-32-6-6-6-16 0-22s16-8 22-2c12 10 26 20 42 24v-66c0-8 8-16 16-16s16 8 16 16v66c16-4 30-14 42-24 6-6 16-4 22 2s4 16-2 22c-18 16-40 26-62 32v146l128-72c-6-22-8-48-4-72 2-8 12-14 20-12s14 12 12 20c-4 16-2 30 2 46l58-32c8-4 18-2 22 6s2 18-6 22l-58 32c12 12 26 20 42 26 8 2 12 12 10 20s-12 12-20 10c-24-8-46-20-62-38l-128 72 128 72c16-16 38-30 62-38 8-2 18 2 20 10s-2 18-10 20c-16 6-30 14-42 26z" + ], + "width": 512, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-snowy" + ], + "defaultCode": 62638, + "grid": 0 + }, + "properties": { + "id": 487, + "order": 488, + "ligatures": "", + "prevSize": 32, + "code": 62638, + "name": "ion-ios-snowy" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 486 + }, + { + "icon": { + "paths": [ + "M448 128c248 0 448 200 448 448 0 114-42 216-112 296-8 8-14 16-22 24l-20-20-2-4c-38-36-82-66-130-86-52-22-106-32-162-32s-110 10-162 32c-48 20-92 50-130 86l-2 4-20 20c-8-8-14-16-22-24-70-80-112-182-112-296 0-248 200-448 448-448zM832 738c20-46 30-96 32-146h-64v-32h64c-2-50-12-100-32-146-18-44-46-84-78-120l-54 54-22-22h-2l54-54c-36-34-76-62-120-80-46-20-96-30-148-32v76h-32v-76c-50 2-98 12-144 32-44 20-86 46-122 80l54 54-22 22-54-54c-32 36-60 76-78 120-20 46-30 98-32 148h64v32h-64c2 50 12 98 32 144 18 40 40 78 70 112 80-80 192-128 314-128s234 48 314 128c30-34 52-72 70-112zM672 350l4 2-150 168c12 16 18 36 18 56 0 52-44 96-96 96-20 0-38-8-54-18l-26 24-22-22 24-24c-12-16-18-36-18-56 0-52 44-96 96-96 20 0 38 6 54 16zM448 640c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-speedometer-outline" + ], + "defaultCode": 62639, + "grid": 0 + }, + "properties": { + "id": 488, + "order": 489, + "ligatures": "", + "prevSize": 32, + "code": 62639, + "name": "ion-ios-speedometer-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 487 + }, + { + "icon": { + "paths": [ + "M770 558v30h60c-2 44-12 88-30 130-16 36-38 70-64 100-78-74-180-116-288-116s-210 42-288 116c-26-30-48-64-64-100-18-42-28-86-30-130h58v-32h-58c2-46 12-90 30-132 18-40 40-76 70-108l50 48 22-22-50-50c32-30 72-52 112-70 42-18 86-28 132-30v68h30v-68c46 2 92 12 134 30s78 40 110 70l-48 50 22 22 50-50c30 32 52 70 70 110 18 42 28 86 30 132h-60v2zM544 576c0-20-6-40-18-56l126-152-4-2-146 130c-16-10-34-16-54-16-52 0-96 44-96 96 0 20 6 40 18 56l-24 24 22 22 26-24c16 10 34 18 54 18 52 0 96-44 96-96zM448 128c248 0 448 200 448 448 0 114-42 216-112 296-8 8-14 16-22 24h-46c-64-78-160-128-268-128s-204 50-268 128h-46c-8-8-14-16-22-24-70-80-112-182-112-296 0-248 200-448 448-448zM758 842c68-74 104-172 104-272 0-110-44-212-122-290s-182-120-292-120-214 42-292 120-122 180-122 290c0 100 36 198 104 272l22 22v-2l20-20c34-34 76-60 120-78 48-20 96-30 148-30s100 10 148 30c44 18 86 44 120 78v0l20 20v2l2-2zM384 576c0-42 22-64 64-64s64 22 64 64-22 64-64 64-64-22-64-64z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-speedometer" + ], + "defaultCode": 62640, + "grid": 0 + }, + "properties": { + "id": 489, + "order": 490, + "ligatures": "", + "prevSize": 32, + "code": 62640, + "name": "ion-ios-speedometer" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 488 + }, + { + "icon": { + "paths": [ + "M280 610l-280-196h342l106-318 106 318h342l-280 196 108 318-276-198-276 198zM448 202v488l214 152-86-244 216-150h-262z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-star-half" + ], + "defaultCode": 62641, + "grid": 0 + }, + "properties": { + "id": 490, + "order": 491, + "ligatures": "", + "prevSize": 32, + "code": 62641, + "name": "ion-ios-star-half" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 489 + }, + { + "icon": { + "paths": [ + "M896 414l-280 196 108 318-276-198-276 198 108-318-280-196h342l106-318 106 318h342zM662 842l-86-244 216-150h-262l-82-246-82 246h-262l216 150-86 244 214-152z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-star-outline" + ], + "defaultCode": 62642, + "grid": 0 + }, + "properties": { + "id": 491, + "order": 492, + "ligatures": "", + "prevSize": 32, + "code": 62642, + "name": "ion-ios-star-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 490 + }, + { + "icon": { + "paths": [ + "M896 414l-280 196 108 318-276-198-276 198 108-318-280-196h342l106-318 106 318h342z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-star" + ], + "defaultCode": 62643, + "grid": 0 + }, + "properties": { + "id": 492, + "order": 493, + "ligatures": "", + "prevSize": 32, + "code": 62643, + "name": "ion-ios-star" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 491 + }, + { + "icon": { + "paths": [ + "M668 294c64 70 100 160 100 256 0 208-172 378-384 378s-384-170-384-378c0-96 36-188 102-258l2-2h-36l-16 16-46-46 82-80 46 44-18 18v36c62-60 144-100 232-106h4v-76h64v76c86 8 164 42 226 98l10 10v-38l-18-18 46-44 82 80-44 46-18-16h-36zM384 892c192 0 346-154 346-342s-154-342-346-342c-190 0-346 154-346 342s154 342 346 342zM400 514c28 8 48 34 48 62 0 30-20 52-48 60l-16 36-16-36c-28-8-48-30-48-60 0-28 24-54 48-62v-258h32v258z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-stopwatch-outline" + ], + "defaultCode": 62644, + "grid": 0 + }, + "properties": { + "id": 493, + "order": 494, + "ligatures": "", + "prevSize": 32, + "code": 62644, + "name": "ion-ios-stopwatch-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 492 + }, + { + "icon": { + "paths": [ + "M668 294c64 70 100 160 100 256 0 208-172 378-384 378s-384-170-384-378c0-96 36-188 102-258l2-2h-36l-16 16-46-46 82-80 46 44-18 18v36c62-60 144-100 232-106h4v-76h64v76c86 8 164 42 226 98l10 10v-38l-18-18 46-44 82 80-44 46-18-16h-36zM400 636c28-8 48-30 48-60 0-28-20-54-48-62v-258h-32v258c-24 8-48 34-48 62 0 30 20 52 48 60l16 36z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-stopwatch" + ], + "defaultCode": 62645, + "grid": 0 + }, + "properties": { + "id": 494, + "order": 495, + "ligatures": "", + "prevSize": 32, + "code": 62645, + "name": "ion-ios-stopwatch" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 493 + }, + { + "icon": { + "paths": [ + "M302 304v-112h36v112h-36zM302 832v-120h36v120h-36zM528 530v-36h112v36h-112zM0 530v-36h120v36h-120zM480 636l68 68-24 24-66-68zM128 284l68 66-24 24-68-68zM458 352l66-68 24 24-68 66zM104 704l68-68 22 24-66 68zM320 664c-84 0-152-68-152-152s68-152 152-152 152 68 152 152-68 152-152 152zM320 394c-64 0-118 54-118 118s54 118 118 118 118-54 118-118-54-118-118-118z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-sunny-outline" + ], + "defaultCode": 62646, + "grid": 0 + }, + "properties": { + "id": 495, + "order": 496, + "ligatures": "", + "prevSize": 32, + "code": 62646, + "name": "ion-ios-sunny-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 494 + }, + { + "icon": { + "paths": [ + "M302 304v-112h36v112h-36zM302 832v-120h36v120h-36zM528 530v-36h112v36h-112zM0 530v-36h120v36h-120zM480 636l68 68-24 24-66-68zM128 284l68 66-24 24-68-68zM458 352l66-68 24 24-68 66zM104 704l68-68 22 24-66 68zM320 664c-84 0-152-68-152-152s68-152 152-152 152 68 152 152-68 152-152 152z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-sunny" + ], + "defaultCode": 62647, + "grid": 0 + }, + "properties": { + "id": 496, + "order": 497, + "ligatures": "", + "prevSize": 32, + "code": 62647, + "name": "ion-ios-sunny" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 495 + }, + { + "icon": { + "paths": [ + "M672 672c32 32 52 70 0 132-50 60-84 60-128 60-48 0-116-28-186-80-64-46-92-68-156-134-68-70-110-128-158-214-54-100-48-148-36-184 8-24 28-48 56-66l2-2c12-8 36-24 64-24 26 0 48 12 68 36l2 2c22 28 48 62 64 94 20 42 20 76-2 106-18 24-24 38-24 46s10 18 26 36l2 2c32 36 40 46 52 58 2 2 6 4 8 6l4 4c14 14 22 24 58 56l2 2c14 12 18 16 24 16 10 0 32-14 58-30 8-6 22-10 34-10 54 0 136 58 166 88zM648 782c38-44 26-62 2-86-26-28-100-78-144-78-6 0-12 2-16 4-38 24-56 36-74 36s-30-12-46-26h-2c-38-32-46-42-60-58l-4-4c-2-2-6-4-8-6-12-12-22-24-54-60v-2c-20-22-34-36-36-56s10-40 32-68c30-40-10-96-62-158l-2-2c-14-16-28-24-44-24-20 0-36 12-46 18-2 0-4 2-4 2-22 14-36 32-42 48-10 32-14 70 34 158 46 84 86 140 152 208 62 64 90 84 152 128 64 46 128 76 168 76 42 0 64-2 104-50z" + ], + "width": 704, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-telephone-outline" + ], + "defaultCode": 62648, + "grid": 0 + }, + "properties": { + "id": 497, + "order": 498, + "ligatures": "", + "prevSize": 32, + "code": 62648, + "name": "ion-ios-telephone-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 496 + }, + { + "icon": { + "paths": [ + "M672 672c32 32 52 70 0 132-50 60-84 60-128 60-48 0-116-28-186-80-64-46-92-68-156-134-68-70-110-128-158-214-54-100-48-148-36-184 8-24 28-48 56-66l2-2c12-8 36-24 64-24 26 0 48 12 68 36l2 2c22 28 48 62 64 94 20 42 20 76-2 106-18 24-24 38-24 46s10 18 26 36l2 2c32 36 40 46 52 58 2 2 6 4 8 6l4 4c14 14 22 24 58 56l2 2c14 12 18 16 24 16 10 0 32-14 58-30 8-6 22-10 34-10 54 0 136 58 166 88z" + ], + "width": 704, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-telephone" + ], + "defaultCode": 62649, + "grid": 0 + }, + "properties": { + "id": 498, + "order": 499, + "ligatures": "", + "prevSize": 32, + "code": 62649, + "name": "ion-ios-telephone" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 497 + }, + { + "icon": { + "paths": [ + "M832 512v16c0 10 0 22-2 32v0c-22 194-180 348-374 366v0h-12s-2 2-4 2h-24c-230 0-416-186-416-416s186-416 416-416 416 186 416 416zM798 512c0-210-172-382-382-382-6 0-10 2-16 2 2 48 12 92 30 136 20 52 52 98 92 138s86 72 138 92c44 18 88 28 136 30 0-6 2-10 2-16zM34 512c0 210 172 382 382 382h8c-2-44-14-90-30-132-20-52-52-96-92-136s-84-72-136-92c-42-16-88-28-132-30v8zM456 892c176-18 316-156 338-332-108-6-212-50-294-132s-126-186-132-294c-176 22-314 162-332 338 106 6 210 50 290 130s124 184 130 290z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-tennisball-outline" + ], + "defaultCode": 62650, + "grid": 0 + }, + "properties": { + "id": 499, + "order": 500, + "ligatures": "", + "prevSize": 32, + "code": 62650, + "name": "ion-ios-tennisball-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 498 + }, + { + "icon": { + "paths": [ + "M0 504v0 0 0zM424 928v0zM416 96c230 0 416 186 416 416 0 16 0 32-2 48v0 0c-22 194-180 348-374 366v0 0c-12 2-26 2-40 2-230 0-416-186-416-416v-8c0-12 0-22 2-32v0 0c18-194 172-352 366-374v0 0c12-2 22-2 32-2v0 0h16zM166 534c52 20 96 52 136 92s72 84 92 136c16 42 28 88 30 132 10 0 22 0 32-2-6-106-50-210-130-290s-184-124-290-130c-2 10-2 22-2 32 44 2 90 14 132 30zM500 428c82 82 186 126 294 132 2-10 2-22 2-32-48-2-92-12-136-30-52-20-98-52-138-92s-72-86-92-138c-18-44-28-88-30-136-10 0-22 0-32 2 6 108 50 212 132 294z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-tennisball" + ], + "defaultCode": 62651, + "grid": 0 + }, + "properties": { + "id": 500, + "order": 501, + "ligatures": "", + "prevSize": 32, + "code": 62651, + "name": "ion-ios-tennisball" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 499 + }, + { + "icon": { + "paths": [ + "M386 544l-176 256 58-192h-104l30-160h144l-32 96h80zM418 346c72 0 130 58 130 130s-58 132-130 132h-16v-34h16c54 0 98-44 98-98s-44-100-98-100h-12l-28 4-6-28c-6-28-22-52-44-70s-50-26-78-26c-68 0-126 54-126 124v24s2 18 2 18c-10 0-24 4-28 4-38 6-66 36-66 74 0 20 6 38 20 52s32 22 52 22h22v34h-22c-56 0-104-48-104-106 0-54 42-102 94-106v-16c0-86 70-156 156-156 74 0 136 52 152 122h16z" + ], + "width": 548, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-thunderstorm-outline" + ], + "defaultCode": 62652, + "grid": 0 + }, + "properties": { + "id": 501, + "order": 502, + "ligatures": "", + "prevSize": 32, + "code": 62652, + "name": "ion-ios-thunderstorm-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 500 + }, + { + "icon": { + "paths": [ + "M306 544h80l-176 256 58-192h-104l30-160h144zM168 416h214l-32 96h96l-66 96h38c72 0 130-60 130-132s-58-130-130-130h-16c-16-70-78-122-152-122-86 0-156 70-156 156v16c-52 4-94 52-94 106 0 58 48 106 104 106h28z" + ], + "width": 548, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-thunderstorm" + ], + "defaultCode": 62653, + "grid": 0 + }, + "properties": { + "id": 502, + "order": 503, + "ligatures": "", + "prevSize": 32, + "code": 62653, + "name": "ion-ios-thunderstorm" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 501 + }, + { + "icon": { + "paths": [ + "M448 64c248 0 448 200 448 448s-200 448-448 448-448-200-448-448 200-448 448-448zM742 806c38-38 70-82 90-132 22-52 32-106 32-162s-10-110-32-162c-20-50-52-94-90-132s-82-70-132-90c-52-22-106-32-162-32s-110 10-162 32c-50 20-94 52-132 90s-70 82-90 132c-22 52-32 106-32 162s10 110 32 162c20 50 52 94 90 132s82 70 132 90c52 22 106 32 162 32s110-10 162-32c50-20 94-52 132-90zM432 160c0-10 6-16 16-16s16 6 16 16-6 16-16 16-16-6-16-16zM432 864c0-10 6-16 16-16s16 6 16 16-6 16-16 16-16-6-16-16zM784 512c0-10 6-16 16-16s16 6 16 16-6 16-16 16-16-6-16-16zM80 512c0-10 6-16 16-16s16 6 16 16-6 16-16 16-16-6-16-16zM256 208c0-10 6-16 16-16s16 6 16 16-6 16-16 16-16-6-16-16zM608 816c0-10 6-16 16-16s16 6 16 16-6 16-16 16-16-6-16-16zM736 336c0-10 6-16 16-16s16 6 16 16-6 16-16 16-16-6-16-16zM128 688c0-10 6-16 16-16s16 6 16 16-6 16-16 16-16-6-16-16zM128 336c0-10 6-16 16-16s16 6 16 16-6 16-16 16-16-6-16-16zM736 688c0-10 6-16 16-16s16 6 16 16-6 16-16 16-16-6-16-16zM608 208c0-10 6-16 16-16s16 6 16 16-6 16-16 16-16-6-16-16zM256 816c0-10 6-16 16-16s16 6 16 16-6 16-16 16-16-6-16-16zM476 496c8 16 4 36-12 44v244c0 8-8 16-16 16s-16-8-16-16v-244c-4-2-8-8-12-12-6-10-6-22 0-32l-74-126c-4-8-2-18 6-22s16-2 20 6l76 126c10 0 22 6 28 16z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-time-outline" + ], + "defaultCode": 62654, + "grid": 0 + }, + "properties": { + "id": 503, + "order": 504, + "ligatures": "", + "prevSize": 32, + "code": 62654, + "name": "ion-ios-time-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 502 + }, + { + "icon": { + "paths": [ + "M448 64c248 0 448 200 448 448s-200 448-448 448-448-200-448-448 200-448 448-448zM448 144c-8 0-16 8-16 16s8 16 16 16 16-8 16-16-8-16-16-16zM96 528c8 0 16-8 16-16s-8-16-16-16-16 8-16 16 8 16 16 16zM152 702c8-4 8-14 4-22s-12-10-20-6-10 14-6 22 14 10 22 6zM156 344c4-8 4-18-4-22s-18-2-22 6-2 18 6 22 16 2 20-6zM264 194c-8 4-10 14-6 22s14 8 22 4 10-12 6-20-14-10-22-6zM286 824c4-8 2-16-6-20s-18-4-22 4-2 18 6 22 18 2 22-6zM448 880c8 0 16-8 16-16s-8-16-16-16-16 8-16 16 8 16 16 16zM464 540c16-8 20-28 12-44-6-10-18-16-28-16l-76-128c-4-8-14-8-22-4s-8 14-4 22l74 126c-6 10-6 22 0 32 4 4 8 10 12 12v244c0 8 8 16 16 16s16-8 16-16v-244zM632 830c8-4 10-14 6-22s-14-8-22-4-10 12-6 20 14 10 22 6zM638 216c4-8 2-18-6-22s-18-2-22 6-2 16 6 20 18 4 22-4zM766 696c4-8 2-18-6-22s-16-2-20 6-4 18 4 22 18 2 22-6zM760 350c8-4 10-14 6-22s-14-10-22-6-8 14-4 22 12 10 20 6zM800 528c8 0 16-8 16-16s-8-16-16-16-16 8-16 16 8 16 16 16z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-time" + ], + "defaultCode": 62655, + "grid": 0 + }, + "properties": { + "id": 504, + "order": 505, + "ligatures": "", + "prevSize": 32, + "code": 62655, + "name": "ion-ios-time" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 503 + }, + { + "icon": { + "paths": [ + "M378 544l-2-4s-178-236-172-240 242 170 242 170c2 2 2 4 4 6 10 10 16 22 16 36 0 28-22 50-50 50-16 0-28-6-38-18zM416 96c230 0 416 186 416 416s-186 416-416 416-416-186-416-416c0-114 46-218 122-294l24 24c-70 70-112 164-112 270 0 212 170 382 382 382s382-170 382-382c0-200-154-366-350-382v190h-32v-224z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-timer-outline" + ], + "defaultCode": 62656, + "grid": 0 + }, + "properties": { + "id": 505, + "order": 506, + "ligatures": "", + "prevSize": 32, + "code": 62656, + "name": "ion-ios-timer-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 504 + }, + { + "icon": { + "paths": [ + "M416 96c230 0 416 186 416 416s-186 416-416 416-416-186-416-416 186-416 416-416zM204 300c-4 4 172 240 172 240l2 2c10 12 22 20 38 20 28 0 50-22 50-50 0-14-6-26-16-36l-6-6c0 0-234-174-240-170zM416 894c212 0 384-170 384-382s-172-384-384-384v192h32v-156c176 18 316 168 316 348 0 192-156 348-348 348s-350-156-350-348c0-96 38-184 102-248l-22-24c-70 70-112 166-112 272 0 212 170 382 382 382z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-timer" + ], + "defaultCode": 62657, + "grid": 0 + }, + "properties": { + "id": 506, + "order": 507, + "ligatures": "", + "prevSize": 32, + "code": 62657, + "name": "ion-ios-timer" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 505 + }, + { + "icon": { + "paths": [ + "M192 640c-52 0-96 44-96 96s44 96 96 96 96-44 96-96-44-96-96-96zM192 608v0c70 0 128 58 128 128s-58 128-128 128-128-58-128-128 58-128 128-128zM702 576v0h-510c-88 0-160 72-160 160s72 160 160 160h512c88 0 160-72 160-160s-74-160-162-160zM704 544v0c106 0 192 86 192 192s-86 192-192 192h-512c-106 0-192-86-192-192s86-192 192-192h512zM704 192c-52 0-96 44-96 96s44 96 96 96 96-44 96-96-44-96-96-96zM704 160v0c70 0 128 58 128 128s-58 128-128 128-128-58-128-128 58-128 128-128zM194 128v0c-88 0-162 72-162 160s72 160 160 160h512c88 0 160-72 160-160s-72-160-160-160h-510zM192 96v0h512c106 0 192 86 192 192s-86 192-192 192h-512c-106 0-192-86-192-192s86-192 192-192z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-toggle-outline" + ], + "defaultCode": 62658, + "grid": 0 + }, + "properties": { + "id": 507, + "order": 508, + "ligatures": "", + "prevSize": 32, + "code": 62658, + "name": "ion-ios-toggle-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 506 + }, + { + "icon": { + "paths": [ + "M192 640c52 0 96 44 96 96s-44 96-96 96-96-44-96-96 44-96 96-96zM704 544c106 0 192 86 192 192s-86 192-192 192h-512c-106 0-192-86-192-192s86-192 192-192h512zM192 864c70 0 128-58 128-128s-58-128-128-128-128 58-128 128 58 128 128 128zM704 384c-52 0-96-44-96-96s44-96 96-96 96 44 96 96-44 96-96 96zM192 480c-106 0-192-86-192-192s86-192 192-192h512c106 0 192 86 192 192s-86 192-192 192h-512zM704 160c-70 0-128 58-128 128s58 128 128 128 128-58 128-128-58-128-128-128z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-toggle" + ], + "defaultCode": 62659, + "grid": 0 + }, + "properties": { + "id": 508, + "order": 509, + "ligatures": "", + "prevSize": 32, + "code": 62659, + "name": "ion-ios-toggle" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 507 + }, + { + "icon": { + "paths": [ + "M576 226v30h-40l-48 582c0 32-26 58-58 58h-282c-32 0-58-26-58-58l-48-582h-42v-30h160v-40c0-32 26-58 58-58h140c32 0 58 26 58 58v40h160zM190 186v40h196v-40c0-16-12-28-28-28h-140c-16 0-28 12-28 28zM460 836l46-580h-434l46 580v2c0 16 14 28 30 28h282c16 0 30-12 30-28v-2zM274 802v-482h28v482h-28zM416 320l-22 482h-28l20-482h30zM188 320l22 482h-28l-22-482h28z" + ], + "width": 576, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-trash-outline" + ], + "defaultCode": 62660, + "grid": 0 + }, + "properties": { + "id": 509, + "order": 510, + "ligatures": "", + "prevSize": 32, + "code": 62660, + "name": "ion-ios-trash-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 508 + }, + { + "icon": { + "paths": [ + "M416 226h160v30h-40l-48 582c0 32-26 58-58 58h-282c-32 0-58-26-58-58l-48-582h-42v-30h160v-40c0-32 26-58 58-58h140c32 0 58 26 58 58v40zM190 186v0 40h196v-40c0-16-12-28-28-28h-140c-16 0-28 12-28 28zM182 802h28l-22-482h-28zM302 802v-482h-28v482h28zM394 802l22-482h-28l-22 482h28z" + ], + "width": 576, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-trash" + ], + "defaultCode": 62661, + "grid": 0 + }, + "properties": { + "id": 510, + "order": 511, + "ligatures": "", + "prevSize": 32, + "code": 62661, + "name": "ion-ios-trash" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 509 + }, + { + "icon": { + "paths": [ + "M768 736v64h-20l-40-62c-40-66-88-126-150-154-48-22-94-38-174-40v160l-384-256 384-256v160c126 6 216 42 286 112 104 106 98 238 98 272zM736 722c0 0 18-338-384-338v-130l-296 194 296 194v-130c182 0 288 48 384 210z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-undo-outline" + ], + "defaultCode": 62662, + "grid": 0 + }, + "properties": { + "id": 511, + "order": 512, + "ligatures": "", + "prevSize": 32, + "code": 62662, + "name": "ion-ios-undo-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 510 + }, + { + "icon": { + "paths": [ + "M768 736v64h-20l-40-62c-40-66-88-126-150-154-48-22-94-38-174-40v160l-384-256 384-256v160c126 6 216 42 286 112 104 106 98 238 98 272z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-undo" + ], + "defaultCode": 62663, + "grid": 0 + }, + "properties": { + "id": 512, + "order": 513, + "ligatures": "", + "prevSize": 32, + "code": 62663, + "name": "ion-ios-undo" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 511 + }, + { + "icon": { + "paths": [ + "M320 576c36 0 64 28 64 64 0 30-20 54-48 62v66h-32v-66c-28-8-48-32-48-62 0-36 28-64 64-64zM320 672c18 0 32-14 32-32s-14-32-32-32-32 14-32 32 14 32 32 32zM144 448h496v480h-640v-480h112v-144c0-114 94-208 208-208s208 94 208 208v16h-32v-16c0-98-78-176-176-176s-176 78-176 176v144zM608 896v-416h-576v416h576z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-unlocked-outline" + ], + "defaultCode": 62664, + "grid": 0 + }, + "properties": { + "id": 513, + "order": 514, + "ligatures": "", + "prevSize": 32, + "code": 62664, + "name": "ion-ios-unlocked-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 512 + }, + { + "icon": { + "paths": [ + "M320 608c18 0 32 14 32 32s-14 32-32 32-32-14-32-32 14-32 32-32zM144 448h496v480h-640v-480h112v-144c0-114 94-208 208-208s208 94 208 208v16h-32v-16c0-98-78-176-176-176s-176 78-176 176v144zM336 702c28-8 48-32 48-62 0-36-28-64-64-64s-64 28-64 64c0 30 20 54 48 62v66h32v-66z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-unlocked" + ], + "defaultCode": 62665, + "grid": 0 + }, + "properties": { + "id": 514, + "order": 515, + "ligatures": "", + "prevSize": 32, + "code": 62665, + "name": "ion-ios-unlocked" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 513 + }, + { + "icon": { + "paths": [ + "M384 288h256v608h-640v-608h256v32h-224v544h576v-544h-224v-32zM194 236l-22-24 148-148 148 148-22 24-110-110v486h-32v-486z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-upload-outline" + ], + "defaultCode": 62666, + "grid": 0 + }, + "properties": { + "id": 515, + "order": 516, + "ligatures": "", + "prevSize": 32, + "code": 62666, + "name": "ion-ios-upload-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 514 + }, + { + "icon": { + "paths": [ + "M336 288h304v608h-640v-608h304v324h32v-324zM336 126v162h-32v-162l-110 110-22-24 148-148 148 148-22 24z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-upload" + ], + "defaultCode": 62667, + "grid": 0 + }, + "properties": { + "id": 516, + "order": 517, + "ligatures": "", + "prevSize": 32, + "code": 62667, + "name": "ion-ios-upload" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 515 + }, + { + "icon": { + "paths": [ + "M514 256c38 0 66 28 66 66v376c0 38-28 70-66 70h-442c-38 0-72-32-72-70v-376c0-38 34-66 72-66h442zM546 698v-376c0-18-16-32-34-32h-442c-18 0-36 14-36 32v376c0 18 20 36 38 36h442c18 0 32-18 32-36zM640 426l196-106v384l-196-106v-172zM802 380v0l-128 66v132l128 66v-264z" + ], + "width": 836, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-videocam-outline" + ], + "defaultCode": 62668, + "grid": 0 + }, + "properties": { + "id": 517, + "order": 518, + "ligatures": "", + "prevSize": 32, + "code": 62668, + "name": "ion-ios-videocam-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 516 + }, + { + "icon": { + "paths": [ + "M514 256c38 0 66 28 66 66v376c0 38-28 70-66 70h-442c-38 0-72-32-72-70v-376c0-38 34-66 72-66h442zM640 426l196-106v384l-196-106v-172z" + ], + "width": 836, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-videocam" + ], + "defaultCode": 62669, + "grid": 0 + }, + "properties": { + "id": 518, + "order": 519, + "ligatures": "", + "prevSize": 32, + "code": 62669, + "name": "ion-ios-videocam" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 517 + }, + { + "icon": { + "paths": [ + "M556 256c52 72 84 160 84 256s-32 184-84 256l-28-20c48-66 78-148 78-236s-30-170-78-236zM448 704l-28-20c36-48 58-108 58-172s-22-124-58-172l28-20c40 54 64 120 64 192s-24 138-64 192zM354 640l-26-20c24-30 36-68 36-108s-12-78-36-108l26-20c28 36 44 80 44 128s-16 92-44 128zM116 432l140-112v384l-140-112h-116v-160h116z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-volume-high" + ], + "defaultCode": 62670, + "grid": 0 + }, + "properties": { + "id": 519, + "order": 520, + "ligatures": "", + "prevSize": 32, + "code": 62670, + "name": "ion-ios-volume-high" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 518 + }, + { + "icon": { + "paths": [ + "M116 432l140-112v384l-140-112h-116v-160h116z" + ], + "width": 256, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-volume-low" + ], + "defaultCode": 62671, + "grid": 0 + }, + "properties": { + "id": 520, + "order": 521, + "ligatures": "", + "prevSize": 32, + "code": 62671, + "name": "ion-ios-volume-low" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 519 + }, + { + "icon": { + "paths": [ + "M208 618v310h144v32h-320v-32h144v-310c0-44-40-78-80-110-16-12-32-26-44-38-54-56-52-104-52-142v-8c0-88 62-250 64-256h256c2 6 64 168 64 256v8c0 38 2 86-52 142-12 12-28 26-44 38-40 32-80 66-80 110zM86 96c-10 32-40 126-50 192h312c-10-66-40-160-50-192h-212zM192 546c6 0 10 0 14-4v0c18-22 40-40 62-58 16-12 30-24 40-36 44-46 44-82 44-120v-8h-320v8c0 38 0 74 44 120 10 12 24 24 40 36 22 18 44 36 62 58v0c4 4 8 4 14 4z" + ], + "width": 384, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-wineglass-outline" + ], + "defaultCode": 62672, + "grid": 0 + }, + "properties": { + "id": 521, + "order": 522, + "ligatures": "", + "prevSize": 32, + "code": 62672, + "name": "ion-ios-wineglass-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 520 + }, + { + "icon": { + "paths": [ + "M208 618v310h144v32h-320v-32h144v-310c0-44-40-78-80-110-16-12-32-26-44-38-54-56-52-104-52-142v-8c0-88 62-250 64-256h256c2 6 64 168 64 256v8c0 38 2 86-52 142-12 12-28 26-44 38-40 32-80 66-80 110zM86 96c-10 32-40 126-50 192h312c-10-66-40-160-50-192h-212z" + ], + "width": 384, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-wineglass" + ], + "defaultCode": 62673, + "grid": 0 + }, + "properties": { + "id": 522, + "order": 523, + "ligatures": "", + "prevSize": 32, + "code": 62673, + "name": "ion-ios-wineglass" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 521 + }, + { + "icon": { + "paths": [ + "M416 96c230 0 416 186 416 416s-186 416-416 416v0 0 0c-230 0-416-186-416-416s186-416 416-416v0 0 0zM432 344v152h150c-2-62-10-120-22-168-42 10-84 14-128 16zM432 312c40-2 82-6 120-16-28-92-76-152-120-164v180zM400 132c-46 12-90 72-120 164 38 10 78 14 120 16v-180zM400 344c-44-2-88-6-130-16-12 48-20 106-22 168h152v-152zM216 496c2-64 8-124 22-176-42-12-82-30-118-50-52 62-82 140-86 226h182zM216 528h-182c4 86 34 164 86 226 38-20 76-38 118-50-14-52-20-112-22-176zM248 528c2 62 10 120 22 168 42-10 86-16 130-18v-150h-152zM400 712c-42 2-82 6-120 16 30 92 74 152 120 164v-180zM432 892c44-12 92-72 120-164-38-10-80-14-120-16v180zM432 678c44 2 86 8 128 18 12-48 20-106 22-168h-150v150zM616 528c-2 64-10 124-24 176 42 12 82 30 120 50 52-62 82-140 86-226h-182zM616 496v0h182c-4-86-34-164-86-226-38 20-76 38-118 50 14 52 20 112 22 176zM688 244c-50-50-112-88-182-104 32 34 58 86 78 148 36-12 70-26 104-44zM326 140c-70 16-134 54-182 104 32 18 68 30 104 42 20-62 46-112 78-146zM144 780c50 50 112 88 182 104-32-34-60-86-80-148-36 12-70 26-102 44zM506 884c70-16 132-54 182-104-34-18-68-32-104-44-20 62-46 114-78 148z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-world-outline" + ], + "defaultCode": 62674, + "grid": 0 + }, + "properties": { + "id": 523, + "order": 524, + "ligatures": "", + "prevSize": 32, + "code": 62674, + "name": "ion-ios-world-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 522 + }, + { + "icon": { + "paths": [ + "M416 96c230 0 416 186 416 416s-186 416-416 416v0 0 0c-230 0-416-186-416-416s186-416 416-416v0 0 0zM416 894c212 0 382-170 382-382s-170-382-382-382v0 0 0c-212 0-382 170-382 382s172 382 382 382v0 0 0zM548 344c12 44 18 96 20 152h-136v-136c40-2 78-8 116-16zM432 164c40 12 82 68 108 150-34 8-72 12-108 14v-164zM290 314c26-84 70-138 110-150v164c-38-2-74-6-110-14zM666 266c-30 16-62 30-96 40-18-58-42-104-72-134 64 16 122 48 168 94zM598 496c-2-58-8-112-20-160 38-12 74-28 108-46 46 56 76 128 80 206h-168zM264 496c2-56 6-108 18-152 38 10 78 14 118 16v136h-136zM568 528c-2 56-8 108-20 152-38-10-76-14-116-16v-136h136zM282 680c-12-44-16-96-18-152h136v136c-40 2-80 6-118 16zM400 860c-40-12-84-66-110-150 36-8 72-12 110-14v164zM498 852c30-30 54-76 72-134 34 10 66 22 96 38-46 46-104 80-168 96zM334 172c-30 30-54 78-72 134-32-10-66-22-96-38 44-46 104-80 168-96zM578 688c12-48 18-102 20-160h168c-4 78-34 150-80 206-34-18-70-34-108-46zM432 696c36 2 74 6 108 14-26 84-68 138-108 150v-164zM254 336c-12 48-22 102-22 160h-166c4-78 34-150 80-206 34 18 70 34 108 46zM232 528c2 58 8 112 20 160-38 12-72 28-106 46-46-56-76-128-80-206h166zM166 756c30-16 64-28 96-38 18 56 42 104 72 134-64-16-124-50-168-96z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ios-world" + ], + "defaultCode": 62675, + "grid": 0 + }, + "properties": { + "id": 524, + "order": 525, + "ligatures": "", + "prevSize": 32, + "code": 62675, + "name": "ion-ios-world" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 523 + }, + { + "icon": { + "paths": [ + "M0 146c0-10 8-18 18-18h540c10 0 18 8 18 18v732c0 10-8 18-18 18h-540c-10 0-18-8-18-18v-732zM288 876c16 0 28-12 28-28s-14-28-28-28c-16 0-28 12-28 28s12 28 28 28zM64 238v550c0 8 6 12 12 12h422c6 0 14-4 14-12v-550c0-8-8-14-14-14h-422c-6 0-12 6-12 14z" + ], + "width": 576, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ipad" + ], + "defaultCode": 61945, + "grid": 0 + }, + "properties": { + "id": 525, + "order": 526, + "ligatures": "", + "prevSize": 32, + "code": 61945, + "name": "ion-ipad" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 524 + }, + { + "icon": { + "paths": [ + "M336 128c26 0 48 22 48 48v672c0 26-22 48-48 48h-288c-26 0-48-22-48-48v-672c0-26 22-48 48-48h288zM160 200v0c0 4 4 8 8 8h48c4 0 8-4 8-8v0c0-4-4-8-8-8h-48c-4 0-8 4-8 8zM136 192c-4 0-8 4-8 8s4 8 8 8 8-4 8-8-4-8-8-8zM192 864c18 0 32-14 32-32s-14-32-32-32-32 14-32 32 14 32 32 32zM352 768v-512h-320v512h320z" + ], + "width": 384, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-iphone" + ], + "defaultCode": 61946, + "grid": 0 + }, + "properties": { + "id": 526, + "order": 527, + "ligatures": "", + "prevSize": 32, + "code": 61946, + "name": "ion-iphone" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 525 + }, + { + "icon": { + "paths": [ + "M224 622c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM392 128c30 0 56 24 56 56v656c0 32-26 56-56 56h-336c-30 0-56-24-56-56v-656c0-32 26-56 56-56h336zM224 832c80 0 144-64 144-144s-64-144-144-144-144 64-144 144 64 144 144 144zM384 454v-236c-2-14-12-24-24-26h-272c-14 2-24 14-24 30v228c0 16 12 30 28 30h262c16 0 28-10 30-26z" + ], + "width": 448, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ipod" + ], + "defaultCode": 61947, + "grid": 0 + }, + "properties": { + "id": 527, + "order": 528, + "ligatures": "", + "prevSize": 32, + "code": 61947, + "name": "ion-ipod" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 526 + }, + { + "icon": { + "paths": [ + "M444 736l-4 26 106 116-36 54-148-18-36 110-38-110-146 18-36-54 106-116-4-26-208 70 6-106 228-206s52-346 56-384c10-80 36-110 36-110s26 30 36 110c4 38 56 384 56 384l228 206 6 106z" + ], + "width": 652, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-jet" + ], + "defaultCode": 62101, + "grid": 0 + }, + "properties": { + "id": 528, + "order": 529, + "ligatures": "", + "prevSize": 32, + "code": 62101, + "name": "ion-jet" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 527 + }, + { + "icon": { + "paths": [ + "M288 602c56 34 96 96 96 166 0 106-86 192-192 192s-192-86-192-192c0-72 38-134 96-168 0 0 14-32 24-82 0-8 22-12 22-24v-40c0-10-14-18-14-22v-32c0-4 0-8 2-12 0-2 2-2 2-4l4-2 8-8v-2c4-4 6-8 6-12 0-2 2-16 2-18 0-6-4-12-8-16l-12-12c-4-4-6-10-6-16v-14c0-6 4-14 8-18v0l10-10c4-4 8-6 8-12v-48c0-6-4-12-8-16v-2l-10-10c-4-4-6-10-6-16v-36c0-22 0-38 18-46 6-2 28-6 46-6 40 0 60 16 64 72 0 0 14 162 18 286s14 180 14 180zM192 896c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64z" + ], + "width": 384, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-key" + ], + "defaultCode": 62102, + "grid": 0 + }, + "properties": { + "id": 529, + "order": 530, + "ligatures": "", + "prevSize": 32, + "code": 62102, + "name": "ion-key" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 528 + }, + { + "icon": { + "paths": [ + "M124 64c4 0 4 2 4 12v824c0 30-20 60-48 60v0 0c-28 0-48-30-48-60 2-38 28-166 32-260v0c2-60-64-62-64-140 0-268 70-382 108-428 4-4 10-8 16-8z" + ], + "width": 128, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-knife" + ], + "defaultCode": 62103, + "grid": 0 + }, + "properties": { + "id": 530, + "order": 531, + "ligatures": "", + "prevSize": 32, + "code": 62103, + "name": "ion-knife" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 529 + }, + { + "icon": { + "paths": [ + "M960 212v524h-896v-524c0-12 8-20 20-20h856c12 0 20 8 20 20zM896 672v-416h-768v416h768zM0 778v-10h1024v10c-140 40-232 54-512 54s-372-14-512-54z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-laptop" + ], + "defaultCode": 61948, + "grid": 0 + }, + "properties": { + "id": 531, + "order": 532, + "ligatures": "", + "prevSize": 32, + "code": 61948, + "name": "ion-laptop" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 530 + }, + { + "icon": { + "paths": [ + "M824 758c36 6 20 82-10 78 0 0-42 2-126-24 0 0-32 38-78 60-52 24-236 66-394-76-216-194-240-708-200-666 172 180 394 94 540 212 110 88 176 254 154 384 0 0 10 16 114 32zM632 766c10-10 20-32 20-48-322-104-504-320-504-320s208 286 484 368z" + ], + "width": 844, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-leaf" + ], + "defaultCode": 61949, + "grid": 0 + }, + "properties": { + "id": 532, + "order": 533, + "ligatures": "", + "prevSize": 32, + "code": 61949, + "name": "ion-leaf" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 531 + }, + { + "icon": { + "paths": [ + "M92 198c22 10 36 32 36 58s-14 48-36 58v550c0 18-14 32-32 32s-32-14-32-32v-556c-16-12-28-30-28-52s12-40 28-52v-44c0-18 14-32 32-32s32 14 32 32v38zM284 586c18 12 30 32 30 54s-12 42-30 54v170c0 18-14 32-32 32s-32-14-32-32v-168c-20-10-34-32-34-56s14-46 34-56v-424c0-18 14-32 32-32s32 14 32 32v426zM476 326c20 12 32 32 32 56s-12 44-32 56v426c0 18-14 32-32 32s-32-14-32-32v-426c-20-12-32-32-32-56s12-44 32-56v-166c0-18 14-32 32-32s32 14 32 32v166zM700 766c0 24-12 44-32 56v42c0 18-14 32-32 32s-32-14-32-32v-42c-20-12-32-32-32-56s12-44 32-56v-550c0-18 14-32 32-32s32 14 32 32v550c20 12 32 32 32 56z" + ], + "width": 700, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-levels" + ], + "defaultCode": 62104, + "grid": 0 + }, + "properties": { + "id": 533, + "order": 534, + "ligatures": "", + "prevSize": 32, + "code": 62104, + "name": "ion-levels" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 532 + }, + { + "icon": { + "paths": [ + "M256 64c142 0 256 112 256 248 0 10 0 18-2 28s-4 22-6 32v4c-34 126-90 142-118 334v2c-4 18-20 24-40 24h-180c-20 0-36-6-40-24v-2c-28-192-84-208-118-334v-4c-2-10-4-22-6-32s-2-18-2-28c0-136 114-248 256-248zM380 792v2c-4 6-6 8-6 14s2 10 6 16v2c2 4 4 6 4 10s-2 8-4 12v2c-4 6-6 8-6 14s2 10 6 16v2c2 4 4 8 4 12 0 10-8 18-20 22h-2c-12 2-26 4-38 6h-4c-12 2-22 10-28 18v0c-8 10-20 20-36 20s-30-12-38-22v0c-6-8-14-14-26-16h-4c-12-2-26-4-38-6h-2c-12-4-20-12-20-22 0-4 2-8 4-12v-2c4-4 6-8 6-14s-2-10-6-16v-2c-2-4-4-8-4-12s2-6 4-10v-2c4-6 6-10 6-16s-2-8-6-14v-2c-2-4-4-8-4-12 0-8-2-12 14-12h228c16 0 14 4 14 12 0 4-2 8-4 12v0z" + ], + "width": 512, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-lightbulb" + ], + "defaultCode": 62105, + "grid": 0 + }, + "properties": { + "id": 534, + "order": 535, + "ligatures": "", + "prevSize": 32, + "code": 62105, + "name": "ion-lightbulb" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 533 + }, + { + "icon": { + "paths": [ + "M384 416v0 0 0zM608 320c88 0 160 72 160 160v64c0 88-72 160-160 160h-224c-66 0-120-40-146-96-8-20-14-40-14-64v-64h96v64c0 36 28 64 64 64h224c36 0 64-28 64-64v-64c0-36-28-64-64-64v0h-32c-12-62-64-96-64-96h96zM532 416c8 20 12 42 12 64v64h-96v-64c0-36-28-64-64-64v0h-224c-36 0-64 28-64 64v64c0 36 28 64 64 64h32c12 62 64 96 64 96h-96c-88 0-160-72-160-160v-64c0-88 72-160 160-160h224c66 0 124 40 148 96z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-link" + ], + "defaultCode": 61950, + "grid": 0 + }, + "properties": { + "id": 535, + "order": 536, + "ligatures": "", + "prevSize": 32, + "code": 61950, + "name": "ion-link" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 534 + }, + { + "icon": { + "paths": [ + "M288 192c0-86 42-128 128-128s128 42 128 128-42 128-128 128-128-42-128-128zM0 512c0-64 32-96 96-96s96 32 96 96-32 96-96 96-96-32-96-96zM624 288c0-10 6-16 16-16s16 6 16 16-6 16-16 16-16-6-16-16zM264 216c20 20 30 44 30 72s-10 52-30 72-44 30-72 30-52-10-72-30-30-44-30-72 10-52 30-72 44-30 72-30 52 10 72 30zM704 512c0-22 10-32 32-32s32 10 32 32-10 32-32 32-32-10-32-32zM594 738c0-32 16-48 48-48s48 16 48 48-16 48-48 48-48-16-48-48zM352 832c0-42 22-64 64-64s64 22 64 64-22 64-64 64-64-22-64-64zM112 736c0-54 26-80 80-80s80 26 80 80-26 80-80 80-80-26-80-80z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-load-a" + ], + "defaultCode": 62106, + "grid": 0 + }, + "properties": { + "id": 536, + "order": 537, + "ligatures": "", + "prevSize": 32, + "code": 62106, + "name": "ion-load-a" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 535 + }, + { + "icon": { + "paths": [ + "M512 320c0 36-28 64-64 64v0c-36 0-64-28-64-64v-192c0-36 28-64 64-64v0c36 0 64 28 64 64v192zM448 640v0c36 0 64 28 64 64v192c0 36-28 64-64 64s-64-28-64-64v-192c0-36 28-64 64-64zM832 448v0c36 0 64 28 64 64s-28 64-64 64h-192c-36 0-64-28-64-64s28-64 64-64h192zM256 448v0c36 0 64 28 64 64s-28 64-64 64h-192c-36 0-64-28-64-64s28-64 64-64h192zM628 422c-24 24-66 24-90 0v0c-24-24-24-68 0-92l136-134c24-24 66-24 90 0v0c24 24 24 66 0 90zM358 602v0c24 24 24 66 0 92l-136 134c-24 24-66 24-90 0s-24-66 0-90l134-136c24-24 68-24 92 0zM764 738v0c24 24 24 66 0 90s-66 24-90 0l-136-136c-24-24-24-66 0-90s66-24 90 0zM358 332v0c24 24 24 66 0 90s-68 24-92 0l-134-136c-24-24-24-66 0-90s66-24 90 0z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-load-b" + ], + "defaultCode": 62107, + "grid": 0 + }, + "properties": { + "id": 537, + "order": 538, + "ligatures": "", + "prevSize": 32, + "code": 62107, + "name": "ion-load-b" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 536 + }, + { + "icon": { + "paths": [ + "M896 452c0 6 0 12-2 18-8 16-30 24-46 14-8-4-12-14-14-22-2-10-2-18-4-28-8-40-24-80-44-116-24-42-56-82-94-112-36-30-80-52-124-66-42-12-84-18-128-18h-8c-6 0-12 2-18 2-12 0-28 2-40 4-26 4-50 12-74 22-42 16-80 40-114 70s-62 66-84 104c-24 44-40 90-48 140-4 22-4 46-4 68 0 12 0 22 2 32 2 12 4 26 6 38 10 48 28 94 56 134 26 40 58 76 96 104 40 30 84 52 130 66 50 14 100 18 152 14 50-4 100-18 146-40 22-10 44-24 64-38s38-30 54-48c8-8 16-18 24-28s14-20 20-30 24-40 34-62c8-16 16-32 22-50 4-8 6-18 8-26s2-14 4-22c2 18 2 36-2 52-2 10-4 22-8 32-2 10-6 20-10 30-8 20-16 38-26 56-12 22-24 42-40 60s-32 36-50 52c-36 30-80 54-124 72-46 18-96 28-146 30s-102-6-150-22c-46-14-90-38-130-66-38-28-72-62-100-100-14-20-26-40-36-62s-18-42-26-66c-12-36-18-74-20-112-2-40 2-78 10-116 10-48 30-94 56-136 24-38 52-70 84-100s70-54 110-72c46-22 96-38 148-42 20-2 38-2 58-2 26 0 52 4 76 8 48 10 94 28 136 52s82 58 114 96c30 36 54 74 72 116 8 20 14 42 20 64 4 16 10 34 12 52z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-load-c" + ], + "defaultCode": 62108, + "grid": 0 + }, + "properties": { + "id": 538, + "order": 539, + "ligatures": "", + "prevSize": 32, + "code": 62108, + "name": "ion-load-c" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 537 + }, + { + "icon": { + "paths": [ + "M736 480c18 0 32 14 32 32s-14 32-32 32h-160c-18 0-32-14-32-32s14-32 32-32h160zM224 512c0 18-14 32-32 32h-160c-18 0-32-14-32-32s14-32 32-32h160c18 0 32 14 32 32zM384 672c18 0 32 14 32 32v160c0 18-14 32-32 32s-32-14-32-32v-160c0-18 14-32 32-32zM384 128c18 0 32 14 32 32v160c0 18-14 32-32 32s-32-14-32-32v-160c0-18 14-32 32-32zM522 432c-8-16-4-36 12-44l138-80c16-8 36-4 44 12s4 36-12 44l-138 80c-16 8-36 4-44-12zM246 592c8 16 4 36-12 44l-138 80c-16 8-36 4-44-12s-4-36 12-44l138-80c16-8 36-4 44 12zM508 662l80 138c8 16 4 36-12 44s-36 4-44-12l-80-138c-8-16-4-36 12-44s36-4 44 12zM236 192l80 138c8 16 4 36-12 44s-36 4-44-12l-80-138c-8-16-4-36 12-44s36-4 44 12zM464 374c-16-8-20-28-12-44l80-138c8-16 28-20 44-12s20 28 12 44l-80 138c-8 16-28 20-44 12zM304 650c16 8 20 28 12 44l-80 138c-8 16-28 20-44 12s-20-28-12-44l80-138c8-16 28-20 44-12zM704 660c16 8 20 28 12 44s-28 20-44 12l-138-80c-16-8-20-28-12-44s28-20 44-12zM64 364c-16-8-20-28-12-44s28-20 44-12l138 80c16 8 20 28 12 44s-28 20-44 12z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-load-d" + ], + "defaultCode": 62109, + "grid": 0 + }, + "properties": { + "id": 539, + "order": 540, + "ligatures": "", + "prevSize": 32, + "code": 62109, + "name": "ion-load-d" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 538 + }, + { + "icon": { + "paths": [ + "M238 128c132 0 240 108 240 240 0 230-240 528-240 528s-238-298-238-528c0-132 106-240 238-240zM238 484c62 0 114-50 114-112s-52-114-114-114-112 52-112 114 50 112 112 112z" + ], + "width": 478, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-location" + ], + "defaultCode": 61951, + "grid": 0 + }, + "properties": { + "id": 540, + "order": 541, + "ligatures": "", + "prevSize": 32, + "code": 61951, + "name": "ion-location" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 539 + }, + { + "icon": { + "paths": [ + "M640 354c78 70 128 172 128 286 0 212-172 384-384 384s-384-172-384-384c0-114 50-216 128-286v-98c0-142 114-256 256-256s256 114 256 256v98zM192 256v52c56-32 122-52 192-52s136 20 192 52v-52c0-106-86-192-192-192s-192 86-192 192zM384 960c176 0 320-144 320-320s-144-320-320-320-320 144-320 320 144 320 320 320zM384 352c160 0 288 128 288 288s-128 288-288 288-288-128-288-288 128-288 288-288zM630 706c4-18 8-36 8-58h-14v-14h16c0-22-4-40-10-60l-50 14-8-24 50-16c-8-20-16-36-28-52l-22 16-8-12 22-16c-12-16-26-32-42-44l-30 42-22-16 30-40c-16-12-34-22-54-28l-8 26-12-4 10-26c-18-6-40-10-58-10v38h-32v-38c-22 2-38 4-58 10l8 24-12 4-8-24c-20 6-38 16-54 28l30 40-20 16-30-42c-16 12-32 28-44 44l22 16-8 10-20-16c-12 16-20 34-28 54l48 16-10 24-50-14c-6 20-6 38-6 60h12v14h-10c0 22 4 40 8 58l48-14 8 24-48 16c8 20 16 38 28 54l18-14 8 10-18 14c12 16 26 32 42 44l30-42 20 16-30 40c16 10 34 22 54 28l6-22 14 4-8 22c20 6 36 8 58 10v-38h32v38c18-2 38-4 58-10l-10-24 12-4 8 24c20-6 38-16 54-28l-30-40 22-16 30 42c16-12 30-28 42-44l-22-14 8-12 20 16c12-16 22-34 30-54l-50-16 8-24zM222 640c0-108 54-162 162-162s162 54 162 162-54 162-162 162-162-54-162-162z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-lock-combination" + ], + "defaultCode": 62676, + "grid": 0 + }, + "properties": { + "id": 541, + "order": 542, + "ligatures": "", + "prevSize": 32, + "code": 62676, + "name": "ion-lock-combination" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 540 + }, + { + "icon": { + "paths": [ + "M44 960c-24 0-44-20-44-44v-424c0-24 20-44 44-44h44v-62c0-84 34-174 86-230s128-92 210-92v0 0c82 0 158 36 210 92s86 146 86 230v62h44c24 0 44 20 44 44v424c0 24-20 44-44 44h-680zM194 386v62h380v-62c0-54-20-122-56-160v0-2c-36-38-84-58-134-58v0 0c-50 0-98 20-134 58v2c-36 38-56 106-56 160z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-locked" + ], + "defaultCode": 61952, + "grid": 0 + }, + "properties": { + "id": 542, + "order": 543, + "ligatures": "", + "prevSize": 32, + "code": 61952, + "name": "ion-locked" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 541 + }, + { + "icon": { + "paths": [ + "M448 64c248 0 448 200 448 448s-200 448-448 448c-192 0-354-120-418-288h68c18 40 46 80 78 112 72 72 170 112 272 112s200-40 272-112 112-170 112-272-40-200-112-272-170-112-272-112-200 40-272 112c-32 32-60 72-78 112h-68c64-168 226-288 418-288zM350 648l104-104h-454v-64h454l-104-104 44-46 182 182-182 182z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-log-in" + ], + "defaultCode": 62110, + "grid": 0 + }, + "properties": { + "id": 543, + "order": 544, + "ligatures": "", + "prevSize": 32, + "code": 62110, + "name": "ion-log-in" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 542 + }, + { + "icon": { + "paths": [ + "M670 648l104-104h-454v-64h454l-104-104 44-46 182 182-182 182zM718 784c6-6 12-10 16-16h82c-80 116-216 192-368 192-248 0-448-200-448-448s200-448 448-448c152 0 288 76 368 192h-82c-4-6-10-10-16-16-72-72-168-112-270-112s-200 40-272 112-112 170-112 272 40 200 112 272 170 112 272 112 198-40 270-112z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-log-out" + ], + "defaultCode": 62111, + "grid": 0 + }, + "properties": { + "id": 544, + "order": 545, + "ligatures": "", + "prevSize": 32, + "code": 62111, + "name": "ion-log-out" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 543 + }, + { + "icon": { + "paths": [ + "M368 600v116c98-16 172-100 172-204 0-32-8-60-20-88-6-12-10-24-18-34l94-86c2 2 4 6 6 8 42 56 66 124 66 200v8c-4 144-94 262-222 308-24 8-52 16-78 18v114l-204-180 88-78zM0 504c4-144 96-266 226-310 24-8 48-14 74-16v-114l204 180-88 78-118 102 2-116c-98 16-172 102-172 204 0 32 8 62 20 90 6 12 10 22 18 32l-94 88c-2-4-4-6-6-10-40-56-66-126-66-200v-8z" + ], + "width": 668, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-loop" + ], + "defaultCode": 61953, + "grid": 0 + }, + "properties": { + "id": 545, + "order": 546, + "ligatures": "", + "prevSize": 32, + "code": 61953, + "name": "ion-loop" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 544 + }, + { + "icon": { + "paths": [ + "M384 64c230 0 384 156 384 400 0 98-6 154-30 256-32 132-78 226-78 226v2c-4 6-12 12-20 12-2 0-6-2-8-2l-4-2-100-40-4-2c-6-4-10-10-10-18 0-2 0-6 2-8v-2c14-32 54-118 74-202s26-126 26-216c0-142-104-244-232-244s-232 102-232 244c0 90 6 132 26 216s60 170 74 202v2c2 2 2 6 2 8 0 8-4 14-10 18l-4 2-100 40-4 2c-2 0-6 2-8 2-8 0-16-6-20-12v-2s-48-94-80-226c-24-102-28-158-28-256 0-244 154-400 384-400zM218 888c-18-38-54-118-72-196l-84 24c26 106 60 184 70 208l86-34v-2zM634 924c10-24 46-102 72-208l-86-24c-18 78-52 158-70 196v2z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-magnet" + ], + "defaultCode": 62112, + "grid": 0 + }, + "properties": { + "id": 546, + "order": 547, + "ligatures": "", + "prevSize": 32, + "code": 62112, + "name": "ion-magnet" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 545 + }, + { + "icon": { + "paths": [ + "M896 384l-126-126-138 138c44 60 72 132 72 212 0 194-158 352-352 352s-352-158-352-352 158-352 352-352c80 0 152 28 212 72l138-138-126-126h320v320zM532 788c48-48 76-112 76-180s-28-132-76-180-112-76-180-76-132 28-180 76-76 112-76 180 28 132 76 180 112 76 180 76 132-28 180-76z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-male" + ], + "defaultCode": 62113, + "grid": 0 + }, + "properties": { + "id": 547, + "order": 548, + "ligatures": "", + "prevSize": 32, + "code": 62113, + "name": "ion-male" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 546 + }, + { + "icon": { + "paths": [ + "M168 214c-42 0-74-34-74-76s32-74 74-74 74 32 74 74-32 76-74 76zM242 230c56 0 94 48 94 96v228c0 44-64 44-64 0v-210h-10v572c0 56-82 62-86 0v-330h-16v330c-2 58-86 60-86 0v-572h-12v210c0 44-62 44-62 0v-228c0-48 38-96 94-96h148z" + ], + "width": 336, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-man" + ], + "defaultCode": 61954, + "grid": 0 + }, + "properties": { + "id": 548, + "order": 549, + "ligatures": "", + "prevSize": 32, + "code": 61954, + "name": "ion-man" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 547 + }, + { + "icon": { + "paths": [ + "M882 274c8 6 14 16 14 28v562c0 12-4 22-14 28-4 2-10 4-14 4-6 0-12 0-16-4l-194-132-194 132c-10 6-20 6-30 0l-194-132-194 132c-10 6-20 6-30 0s-16-16-16-28v-562c0-12 6-22 14-28l210-142c10-6 20-6 30 0l194 132 196-132c10-6 20-6 30 0zM206 706v-484l-142 100v484zM270 706l146 98v-258l-8 22c-14-4-26-12-40-20l16-26c10 6 22 12 32 16v-218l-146-98v202c8 4 18 8 26 14l-20 26c-2-2-4-2-6-4v246zM480 804l146-98v-218c0 2-2 2-2 4l-12 12-24-22 12-12c6-6 10-14 16-20l10 10v-238l-146 98v224h14l6 30c-6 0-12 2-18 2h-2v228zM832 804v-484l-142-98v176c6-2 10-2 16-4l8 32c-8 2-16 2-24 6v274zM194 442c-6 2-22 10-28 14l-22-24c8-6 16-12 24-16 6-4 12-6 18-8l10 30c-4 2 2 2-2 4zM530 532c10-6 20-10 30-20l22 24c-12 12-24 20-38 26zM134 512v2l-30-10v-2c4-14 8-26 18-40l26 18c-8 10-10 20-14 32zM332 476c6 8 14 16 22 22l-22 24c-8-8-16-18-24-26l-6-6 24-22c2 2 4 6 6 8zM752 460l-22-24 20-20-20-20 22-24 20 22 22-22 22 24-20 20 20 20-22 24-22-22z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-map" + ], + "defaultCode": 61955, + "grid": 0 + }, + "properties": { + "id": 549, + "order": 550, + "ligatures": "", + "prevSize": 32, + "code": 61955, + "name": "ion-map" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 548 + }, + { + "icon": { + "paths": [ + "M880 288c8 0 16 8 16 16v576c0 8-8 16-16 16h-864c-8 0-16-8-16-16v-576c0-8 8-16 16-16h240v-62c2-56 44-98 102-98h180c60 0 100 42 102 98v62h240zM320 234v54h256v-58c0-20-18-38-38-38h-180c-20 0-38 18-38 38v4zM640 640v-128h-128v-128h-128v128h-128v128h128v128h128v-128h128z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-medkit" + ], + "defaultCode": 62114, + "grid": 0 + }, + "properties": { + "id": 550, + "order": 551, + "ligatures": "", + "prevSize": 32, + "code": 62114, + "name": "ion-medkit" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 549 + }, + { + "icon": { + "paths": [ + "M640 448c70 0 128 58 128 128s-58 128-128 128c-48 0-88-26-110-64h-20c-122 0-230-50-318-148v230c38 22 64 62 64 110 0 70-58 128-128 128s-128-58-128-128c0-48 26-88 64-110v-420c-38-22-64-62-64-110 0-70 58-128 128-128s128 58 128 128c0 38-16 74-44 98 8 18 34 70 74 116 64 70 140 106 224 106h20c22-38 62-64 110-64zM128 128c-36 0-64 28-64 64s28 64 64 64 64-28 64-64-28-64-64-64zM128 896c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM640 640c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-merge" + ], + "defaultCode": 62271, + "grid": 0 + }, + "properties": { + "id": 551, + "order": 552, + "ligatures": "", + "prevSize": 32, + "code": 62271, + "name": "ion-merge" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 550 + }, + { + "icon": { + "paths": [ + "M0 476c0-20 18-38 40-38s38 18 38 38v28c0 56 24 106 62 144s90 62 148 62 110-24 148-62 62-88 62-144v-28c0-20 16-38 38-38s40 18 40 38v28c0 132-92 240-216 272-2 0-6 2-8 2-12 4-20 14-24 26v116c0 22-18 40-40 40v0c-22 0-40-18-40-40v-116c-4-12-12-22-24-26-2 0-6-2-8-2-124-32-216-140-216-272v-28zM134 216c0-84 68-152 154-152s156 68 156 152v288c0 84-70 150-156 150s-154-66-154-150v-288z" + ], + "width": 576, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-mic-a" + ], + "defaultCode": 61956, + "grid": 0 + }, + "properties": { + "id": 552, + "order": 553, + "ligatures": "", + "prevSize": 32, + "code": 61956, + "name": "ion-mic-a" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 551 + }, + { + "icon": { + "paths": [ + "M160 64c70 0 130 46 152 118 12 36 8 90 4 110s-16 40-28 56c-6 8-14 14-22 18-2 0-2 2-4 2-6 2-12 4-20 6-24 6-50 10-78 10v0h-4c-28 0-58-4-82-10-8-2-14-4-20-6-2 0-2-2-4-2-8-4-16-10-22-18-12-16-24-36-28-56s-8-74 4-110c22-72 82-118 152-118zM238 402c12 0 24 10 24 24v4c-10 134-36 482-38 504 0 0-6 26-64 26v0c-58 0-64-26-64-26-2-22-26-370-36-504v-4c0-14 10-24 22-24h2c2 0 2 2 4 2 4 0 8 2 12 2 18 4 42 4 62 4s40 0 58-4c4 0 8-2 12-2 2 0 2-2 4-2h2zM180 564v-66c0-12-8-22-20-22s-20 10-20 22v66c0 12 8 22 20 22s20-10 20-22z" + ], + "width": 320, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-mic-b" + ], + "defaultCode": 61957, + "grid": 0 + }, + "properties": { + "id": 553, + "order": 554, + "ligatures": "", + "prevSize": 32, + "code": 61957, + "name": "ion-mic-b" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 552 + }, + { + "icon": { + "paths": [ + "M402 64c60 0 110 46 110 104v56h-118v74h118v86h-118v74h118v86h-118v74h118v84c0 58-50 104-110 104h-60v154h-172v-154h-60c-60 0-110-46-110-104v-84h304v-74h-304v-86h304v-74h-304v-86h304v-74h-304v-56c0-58 50-104 110-104h292z" + ], + "width": 512, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-mic-c" + ], + "defaultCode": 61958, + "grid": 0 + }, + "properties": { + "id": 554, + "order": 555, + "ligatures": "", + "prevSize": 32, + "code": 61958, + "name": "ion-mic-c" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 553 + }, + { + "icon": { + "paths": [ + "M448 64c248 0 448 200 448 448s-200 448-448 448-448-200-448-448 200-448 448-448zM704 544v-64h-512v64h512z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-minus-circled" + ], + "defaultCode": 61959, + "grid": 0 + }, + "properties": { + "id": 555, + "order": 556, + "ligatures": "", + "prevSize": 32, + "code": 61959, + "name": "ion-minus-circled" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 554 + }, + { + "icon": { + "paths": [ + "M706 448c34 0 62 28 62 64s-28 64-62 64h-644c-34 0-62-28-62-64s28-64 62-64h644z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-minus-round" + ], + "defaultCode": 61960, + "grid": 0 + }, + "properties": { + "id": 556, + "order": 557, + "ligatures": "", + "prevSize": 32, + "code": 61960, + "name": "ion-minus-round" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 555 + }, + { + "icon": { + "paths": [ + "M0 576v-128h768v128h-768z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-minus" + ], + "defaultCode": 61961, + "grid": 0 + }, + "properties": { + "id": 557, + "order": 558, + "ligatures": "", + "prevSize": 32, + "code": 61961, + "name": "ion-minus" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 556 + }, + { + "icon": { + "paths": [ + "M1018 782v24c0 6-2 10-2 14-2 24-4 36-12 40-6 4-12 4-20 4h-86s-20-2-22-32v-16c40-2 78-2 104 0 20 0 26 0 32-12 4-6 4-14 6-22zM6 782c2 8 2 16 6 22 6 12 12 12 32 12 26-2 64-2 104 0v16c-2 30-16 32-22 32h-86s-14 0-20-4c-8-4-12-16-14-40v-38zM1024 594c0 62-4 116-4 136 0 8 0 22-2 36-2 8-2 16-6 22-6 12-12 12-32 12-26-2-64-2-104 0-26 0-54 4-78 4-60 2-42-8-68-8s-126 4-218 4-194-4-220-4-8 10-68 8c-24 0-50-4-76-4-40-2-78-2-104 0-20 0-26 0-32-12-4-6-4-14-6-22-2-14-2-28-2-36 0-20-4-74-4-136s8-122 12-128c2-4 16-18 52-42s34-20 40-36c-6-2-10-6-14-6-8 0-8 6-24 6s-48-2-56-10c-8-6-10-10-10-16s4-18 10-26 38-12 54-14 20 0 24 2c8 4 6 44 6 44l18 2c10-26 24-82 48-124 26-46 52-60 64-64s20-4 96-12 138-10 192-10 116 2 192 10 84 8 96 12 38 18 64 64c24 42 38 98 48 124l18-2s-2-40 6-44c4-2 8-4 24-2s48 6 54 14 10 20 10 26-2 8-10 16-40 10-56 10-16-6-24-6c-4 0-8 4-14 6 6 16 4 12 40 36s50 38 52 42c4 6 12 66 12 128zM172 290c-10 22-22 66-20 72s-2 10 30 8 234-6 330-6 298 4 330 6 28-2 30-8-10-50-20-72-34-62-52-74c-4-2-34-14-108-18-68-4-144-6-180-6s-112 2-180 6c-74 4-104 16-108 18-14 8-42 52-52 74zM246 540c14-4 22-4 22-4s-34-32-96-50-98-22-132-20c0 0-6 32 0 54s16 20 32 24 26 10 32 8 14-8 24-8 58 8 76 8 28-8 42-12zM716 698c30-4 68-38 42-66-36-38-30-38-110-48-70-8-122-8-136-8s-66 0-136 8c-80 10-74 10-110 48-26 28 12 62 42 66 28 4 148 6 204 6s176-2 204-6zM984 520c6-22 0-54 0-54-34-2-70 2-132 20s-96 52-96 52 8-2 22 2 24 12 42 12 66-8 76-8 18 6 24 8 16-4 32-8 26-2 32-24z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-model-s" + ], + "defaultCode": 62145, + "grid": 0 + }, + "properties": { + "id": 558, + "order": 559, + "ligatures": "", + "prevSize": 32, + "code": 62145, + "name": "ion-model-s" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 557 + }, + { + "icon": { + "paths": [ + "M874 128c12 0 22 10 22 22v532c0 12-10 22-22 22h-852c-12 0-22-10-22-22v-532c0-12 10-22 22-22h852zM832 640v-448h-768v448h768zM540 896h-184c-56 0-84-6-60-24s60-32 60-46c0-8 2-90 2-90h180s2 82 2 90c0 14 36 28 60 46s-4 24-60 24z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-monitor" + ], + "defaultCode": 61962, + "grid": 0 + }, + "properties": { + "id": 559, + "order": 560, + "ligatures": "", + "prevSize": 32, + "code": 61962, + "name": "ion-monitor" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 558 + }, + { + "icon": { + "paths": [ + "M100 608c-56 0-100-42-100-96 0-52 44-96 100-96s100 44 100 96c0 54-44 96-100 96zM384 608c-56 0-100-42-100-96 0-52 44-96 100-96s100 44 100 96c0 54-44 96-100 96zM668 608c-56 0-100-42-100-96 0-52 44-96 100-96s100 44 100 96c0 54-44 96-100 96z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-more" + ], + "defaultCode": 61963, + "grid": 0 + }, + "properties": { + "id": 560, + "order": 561, + "ligatures": "", + "prevSize": 32, + "code": 61963, + "name": "ion-more" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 559 + }, + { + "icon": { + "paths": [ + "M256 64v0zM502 386c4-2 4-2 8-2h2v352c0 74-42 142-106 182-10 6-18 10-28 14v2c-36 18-78 26-122 26-142 0-256-100-256-224v-352h2c4 0 6 0 10 2v0c68 26 152 46 244 46s176-20 244-46h2zM378 932c10-4 20-8 28-14-10 6-18 10-28 14v0 0zM406 918c-8 6-18 10-28 14 10-4 18-8 28-14zM264 64c138 4 248 102 248 224v46c-4 4-8 8-12 10-2 2-6 0-8 2-46 20-100 32-164 38h-6c-22 0-34 0-34-20v-172c0-18-14-32-32-32s-32 14-32 32v170c0 22-12 22-34 22h-4c-64-6-122-18-168-38v0c-2 0-2-2-4-2-6-2-10-6-14-10v-46c0-122 114-222 254-224h10z" + ], + "width": 512, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-mouse" + ], + "defaultCode": 62272, + "grid": 0 + }, + "properties": { + "id": 561, + "order": 562, + "ligatures": "", + "prevSize": 32, + "code": 62272, + "name": "ion-mouse" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 560 + }, + { + "icon": { + "paths": [ + "M724 64c24 0 44 18 44 42v606s-6 86-24 110v0c-18 30-50 42-86 42h-74c-56 0-104-40-104-96s48-96 104-96h120v-384l-416 76v464c0 16-6 54-26 82-2 4-4 6-6 10 0 2-2 2-4 4v0c-18 22-46 36-76 36h-74c-56 0-102-40-102-96s46-96 102-96v0h122v-572c2-28 26-56 54-64l436-66s6-2 10-2z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-music-note" + ], + "defaultCode": 61964, + "grid": 0 + }, + "properties": { + "id": 562, + "order": 563, + "ligatures": "", + "prevSize": 32, + "code": 61964, + "name": "ion-music-note" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 561 + }, + { + "icon": { + "paths": [ + "M706 448c34 0 62 28 62 64s-28 64-62 64h-644c-34 0-62-28-62-64s28-64 62-64h644zM706 192c34 0 62 28 62 64s-28 64-62 64h-644c-34 0-62-28-62-64s28-64 62-64h644zM706 704c34 0 62 28 62 64s-28 64-62 64h-644c-34 0-62-28-62-64s28-64 62-64h644z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-navicon-round" + ], + "defaultCode": 61965, + "grid": 0 + }, + "properties": { + "id": 563, + "order": 564, + "ligatures": "", + "prevSize": 32, + "code": 61965, + "name": "ion-navicon-round" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 562 + }, + { + "icon": { + "paths": [ + "M0 546v-64h640v64h-640zM0 354v-64h640v64h-640zM0 738v-64h640v64h-640z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-navicon" + ], + "defaultCode": 61966, + "grid": 0 + }, + "properties": { + "id": 564, + "order": 565, + "ligatures": "", + "prevSize": 32, + "code": 61966, + "name": "ion-navicon" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 563 + }, + { + "icon": { + "paths": [ + "M896 64l-384 896v-512h-512z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-navigate" + ], + "defaultCode": 62115, + "grid": 0 + }, + "properties": { + "id": 565, + "order": 566, + "ligatures": "", + "prevSize": 32, + "code": 62115, + "name": "ion-navigate" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 564 + }, + { + "icon": { + "paths": [ + "M768 192c0 48-26 88-64 110v186l-256 128v106c38 22 64 62 64 110 0 70-58 128-128 128s-128-58-128-128c0-48 26-88 64-110v-106l-256-128v-186c-38-22-64-62-64-110 0-70 58-128 128-128s128 58 128 128c0 48-26 88-64 110v106l192 96 192-96v-106c-38-22-64-62-64-110 0-70 58-128 128-128s128 58 128 128zM128 128c-36 0-64 28-64 64s28 64 64 64 64-28 64-64-28-64-64-64zM384 896c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM640 256c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-network" + ], + "defaultCode": 62273, + "grid": 0 + }, + "properties": { + "id": 566, + "order": 567, + "ligatures": "", + "prevSize": 32, + "code": 62273, + "name": "ion-network" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 565 + }, + { + "icon": { + "paths": [ + "M656 608v-96h32v96h-32zM160 608v-96h180l96 96h-276zM664 120c138 76 232 224 232 392 0 248-200 448-448 448-48 0-94-8-136-22-4-2-6-2-10-4-24-8-48-18-70-30h-2c-138-76-230-224-230-392 0-248 200-448 448-448 48 0 94 8 136 22 4 2 6 2 10 4 24 8 48 18 70 30v0zM448 852c74 0 144-24 200-64l-476-476c-40 56-64 126-64 200 0 130 72 242 180 300 12 6 26 14 38 18 4 2 6 2 10 4 18 6 38 10 58 14 18 4 36 4 54 4zM724 710c40-56 64-124 64-198 0-132-74-246-182-302-12-6-24-12-36-16-4-2-6-2-10-4-18-6-38-10-58-14-18-4-36-4-54-4-74 0-142 24-198 64zM640 596l-84-84h84v84zM704 608v-96h32v96h-32zM656 426c32 14 32 54 32 68v2h-32v-2c0-16-2-34-14-40-8-4-26-8-78-8h-6c-26 0-48 0-66-26-10-16-10-38-4-58-8-2-16-2-24-6-34-14-52-40-52-76 0-66 54-88 78-88v32c-2 0-46 4-46 56 0 22 10 38 32 46 18 8 36 6 36 6 6 0 12 4 14 10s4 12 0 16c-10 14-14 36-8 44 8 12 14 12 40 12h6c48 0 74 4 92 12zM736 496v0h-32c0-56-8-82-14-92-12-20-28-28-50-28h-60c-6 0-10-4-12-8s-2-12 0-16c0 0 16-36 12-64-2-16-12-34-54-34v-32c48 0 80 22 86 60 4 22 0 46-6 62h34c32 0 60 16 78 44 12 20 18 56 18 108z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-no-smoking" + ], + "defaultCode": 62146, + "grid": 0 + }, + "properties": { + "id": 567, + "order": 568, + "ligatures": "", + "prevSize": 32, + "code": 62146, + "name": "ion-no-smoking" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 566 + }, + { + "icon": { + "paths": [ + "M352 544c0-64 32-96 96-96s96 32 96 96-32 96-96 96-96-32-96-96zM352 544c0-64 32-96 96-96s96 32 96 96-32 96-96 96-96-32-96-96zM896 544c0 54-10 106-30 156s-46 94-80 132-72 70-118 96l-158-272c44-24 66-62 66-112h320zM448 416c-24 0-46 6-66 18l-160-276c70-40 146-62 226-62s156 20 226 60l-162 278c-20-12-42-18-64-18zM320 544c0 50 22 88 66 112l-158 272c-70-40-124-92-166-160s-62-142-62-224h320z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-nuclear" + ], + "defaultCode": 62116, + "grid": 0 + }, + "properties": { + "id": 568, + "order": 569, + "ligatures": "", + "prevSize": 32, + "code": 62116, + "name": "ion-nuclear" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 567 + }, + { + "icon": { + "paths": [ + "M676 64c122 0 220 102 220 226v444c0 124-98 226-220 226h-456c-122 0-220-102-220-226v-444c0-124 98-226 220-226h456zM286 502v-204c0-22-18-42-40-42h-46c-22 0-38 18-40 40v208c0 22 18 40 40 40h46c22 0 40-18 40-40v-2zM530 792v-58c0-46-36-84-82-84s-82 38-82 84v58c0 22 18 40 40 40h84c22 0 40-14 40-36v-4zM736 502v-204c0-22-18-42-40-42h-48c-22 0-38 18-40 40v208c0 22 18 40 40 40h48c22 0 40-18 40-40v-2z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-outlet" + ], + "defaultCode": 62274, + "grid": 0 + }, + "properties": { + "id": 569, + "order": 570, + "ligatures": "", + "prevSize": 32, + "code": 62274, + "name": "ion-outlet" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 568 + }, + { + "icon": { + "paths": [ + "M236 566c104 0 204 82 180 204-22 104-108 142-180 154-60 10-200 0-236-70 48-18 68-52 68-98 0-98 64-190 168-190zM872 120c26 26 34 60 10 90l-308 350c4 18 2 34-6 46l-100 116c-4 4-8 4-12 0-2-2-2-4-2-6v-2c4-106-82-174-178-180v0h-4s-4 0-4-2c-4-4-4-8 0-12l118-98c12-8 28-8 46-4l350-308c30-24 64-16 90 10zM268 520v0 0 0z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-paintbrush" + ], + "defaultCode": 62677, + "grid": 0 + }, + "properties": { + "id": 570, + "order": 571, + "ligatures": "", + "prevSize": 32, + "code": 62677, + "name": "ion-paintbrush" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 569 + }, + { + "icon": { + "paths": [ + "M224 128l64-64 550 552-116 24-326 320-396-384 304-304zM618 576l-220-220-220 220h440zM838 616c0 0 122 132 122 198s-54 120-122 120-120-54-120-120 120-198 120-198z" + ], + "width": 960, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-paintbucket" + ], + "defaultCode": 62678, + "grid": 0 + }, + "properties": { + "id": 571, + "order": 572, + "ligatures": "", + "prevSize": 32, + "code": 62678, + "name": "ion-paintbucket" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 570 + }, + { + "icon": { + "paths": [ + "M0 544l896-480-224 896-224-224-160 224-32-320zM638 834l160-646-644 346 166 62 384-308-256 352z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-paper-airplane" + ], + "defaultCode": 62147, + "grid": 0 + }, + "properties": { + "id": 572, + "order": 573, + "ligatures": "", + "prevSize": 32, + "code": 62147, + "name": "ion-paper-airplane" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 571 + }, + { + "icon": { + "paths": [ + "M298 310c12 0 22 10 22 24v390c0 56-20 98-48 126-30 30-72 46-112 46-80 0-160-62-160-176v-468c0-48 22-88 58-108s78-22 114 0 58 60 58 108l-2 450c0 26-6 48-18 64s-32 24-50 24c-34 0-68-30-68-88v-346c0-12 12-24 24-24s22 12 22 24v346c0 28 10 42 22 42 4 0 10-4 14-8 6-8 10-20 10-34v-450c0-30-12-56-34-68s-48-12-70 0-34 38-34 68v468c0 88 58 128 114 128s114-38 114-126v-390c0-12 12-22 24-22z" + ], + "width": 320, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-paperclip" + ], + "defaultCode": 61967, + "grid": 0 + }, + "properties": { + "id": 573, + "order": 574, + "ligatures": "", + "prevSize": 32, + "code": 61967, + "name": "ion-paperclip" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 572 + }, + { + "icon": { + "paths": [ + "M192 872c0 14-10 24-24 24h-144c-14 0-24-10-24-24v-720c0-14 10-24 24-24h144c14 0 24 10 24 24v720zM488 128c14 0 24 10 24 24v720c0 14-10 24-24 24h-144c-14 0-24-10-24-24v-720c0-14 10-24 24-24h144z" + ], + "width": 512, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-pause" + ], + "defaultCode": 61968, + "grid": 0 + }, + "properties": { + "id": 574, + "order": 575, + "ligatures": "", + "prevSize": 32, + "code": 61968, + "name": "ion-pause" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 573 + }, + { + "icon": { + "paths": [ + "M794 656h-84v-102h-102v-84h102v-102h84v102h102v84h-102v102zM768 896h-768s0-52 4-80c4-22 34-50 162-98 126-46 120-24 120-110 0-56-28-22-46-128-8-42-12-14-28-80-8-34 6-38 4-54s-4-32-8-66c-4-42 36-152 176-152s180 110 176 152c-4 34-6 50-8 66s12 20 4 54c-16 66-20 38-28 80-18 106-46 72-46 128 0 86-6 64 120 110 128 48 158 76 162 98 4 28 4 80 4 80z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-person-add" + ], + "defaultCode": 61969, + "grid": 0 + }, + "properties": { + "id": 575, + "order": 576, + "ligatures": "", + "prevSize": 32, + "code": 61969, + "name": "ion-person-add" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 574 + }, + { + "icon": { + "paths": [ + "M786 650c84 32 104 52 106 66 4 18 4 180 4 180h-196c0-36 0-142-2-154-2-20-2-58-110-100-16-6-28-10-38-14 36-16 30-30 30-56 0-38-18-22-30-94-4-28-8-10-18-56-6-24 2-24 2-36s-2-20-4-44c-2-28 22-104 114-104s118 76 116 104c-2 24-4 32-4 44-2 12 8 12 2 36-10 46-14 28-18 56-12 72-32 56-32 94 0 58-4 46 78 78zM650 896h-650s0-130 4-154c4-20 30-44 138-86 108-40 100-34 100-110 0-48-24-16-40-108-6-36-10-14-22-72-6-30 4-32 2-46s-4-28-6-58c-4-38 30-134 148-134s154 98 150 134c-2 30-4 44-6 58s10 16 4 46c-12 58-18 36-24 72-16 92-40 60-40 108 0 64-4 72 62 96 12 4 22 8 38 14 108 42 134 66 138 86 2 12 4 56 4 94v60z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-person-stalker" + ], + "defaultCode": 61970, + "grid": 0 + }, + "properties": { + "id": 576, + "order": 577, + "ligatures": "", + "prevSize": 32, + "code": 61970, + "name": "ion-person-stalker" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 575 + }, + { + "icon": { + "paths": [ + "M768 896h-768s0-52 4-80c4-22 34-50 162-98 126-46 120-24 120-110 0-56-28-22-46-128-8-42-12-14-28-80-8-34 6-38 4-54s-4-32-8-66c-4-42 36-152 176-152s180 110 176 152c-4 34-6 50-8 66s12 20 4 54c-16 66-20 38-28 80-18 106-46 72-46 128 0 86-6 64 120 110 128 48 158 76 162 98 4 28 4 80 4 80z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-person" + ], + "defaultCode": 61971, + "grid": 0 + }, + "properties": { + "id": 577, + "order": 578, + "ligatures": "", + "prevSize": 32, + "code": 61971, + "name": "ion-person" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 576 + }, + { + "icon": { + "paths": [ + "M2 512c0-10-2-22-2-32 0-230 186-416 416-416 10 0 22 2 32 2v446h-446zM156 804c-52-64-84-142-90-228h446v-446c86 6 164 38 228 90 94 76 156 192 156 324 0 230-186 416-416 416-132 0-248-62-324-156z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-pie-graph" + ], + "defaultCode": 62117, + "grid": 0 + }, + "properties": { + "id": 578, + "order": 579, + "ligatures": "", + "prevSize": 32, + "code": 62117, + "name": "ion-pie-graph" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 577 + }, + { + "icon": { + "paths": [ + "M376 456c40 20 72 62 72 110 0 34-6 42-30 42h-162l-24 352h-16l-24-352h-162c-24 0-30-10-30-42 0-48 32-90 72-110v0c2 0 6-2 8-4 14-8 24-22 28-38l36-236v-10c0-14-8-20-20-26v0c-2 0-2-2-4-2-14-6-24-18-24-34 0-40 12-42 36-42h184c24 0 36 2 36 42 0 16-10 28-24 34-2 0-2 2-4 2v0c-12 6-20 12-20 26v10l36 236c4 16 14 30 28 38 2 2 6 4 8 4v0z" + ], + "width": 448, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-pin" + ], + "defaultCode": 62118, + "grid": 0 + }, + "properties": { + "id": 579, + "order": 580, + "ligatures": "", + "prevSize": 32, + "code": 62118, + "name": "ion-pin" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 578 + }, + { + "icon": { + "paths": [ + "M448 64c248 0 448 200 448 448s-200 448-448 448-448-200-448-448 200-448 448-448zM720 784c64-64 102-150 110-240l-126-16v-32l126-16c-8-90-46-176-110-240s-150-102-240-110l-16 126h-32l-16-126c-90 8-176 46-240 110s-102 150-110 240l126 16v32l-126 16c8 90 46 176 110 240s150 102 240 110l16-126h32l16 126c90-8 176-46 240-110z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-pinpoint" + ], + "defaultCode": 62119, + "grid": 0 + }, + "properties": { + "id": 580, + "order": 581, + "ligatures": "", + "prevSize": 32, + "code": 62119, + "name": "ion-pinpoint" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 579 + }, + { + "icon": { + "paths": [ + "M630 260c20 8 24 26 18 40l-296 660s-286-640-296-662 4-32 18-38c78-36 180-56 278-56s192 18 278 56zM224 384c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM352 678c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM480 448c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM684 132c12 6 20 12 20 26 0 2 0 6-2 10l-16 38c-6 10-16 18-28 18-2 0-6-2-12-4-82-36-190-60-294-60s-204 22-294 60c-6 2-8 4-12 4-12 0-22-8-28-18l-16-38s-2-4-2-10c0-16 12-24 20-28 98-42 214-66 332-66s236 26 332 68z" + ], + "width": 704, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-pizza" + ], + "defaultCode": 62120, + "grid": 0 + }, + "properties": { + "id": 581, + "order": 582, + "ligatures": "", + "prevSize": 32, + "code": 62120, + "name": "ion-pizza" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 580 + }, + { + "icon": { + "paths": [ + "M500 624c0 14 2 138-12 204-2 8 6 8 10 14l102 66c4 4 6 16 6 16l2 36-136-32-24 64-24-64-136 32 2-36s0-12 4-16l104-66c4-6 12-6 10-14-14-66-12-190-12-204s-16-10-16-10l-124 26-256 98c0-46 4-52 18-62l366-262s10-126 10-226c0-48 24-156 54-156s54 108 54 156c0 106 10 226 10 226l366 262c12 8 18 14 18 62l-256-98-124-26s-16-4-16 10z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-plane" + ], + "defaultCode": 61972, + "grid": 0 + }, + "properties": { + "id": 582, + "order": 583, + "ligatures": "", + "prevSize": 32, + "code": 61972, + "name": "ion-plane" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 581 + }, + { + "icon": { + "paths": [ + "M192 532c78 48 170 96 268 138 88 38 174 70 252 92-54 44-124 70-200 70-170 0-310-132-320-300zM214 394c2-8 6-16 10-22 20-42 52-80 88-110 54-44 124-70 200-70 170 0 310 132 320 300v20c0 42-8 82-22 118-2 8-6 16-10 22-12-2-26-6-38-10-78-22-164-52-252-90-112-48-216-104-296-158zM860 570c114 70 174 124 162 164-8 24-38 34-88 34-100 0-272-46-462-128-282-122-492-280-470-350 8-24 40-40 88-34 44 6 94 18 146 36-16 18-16 24-28 44-46-10-88-16-118-16h-12c4 4 10 12 16 18 22 22 54 48 92 74 82 58 194 118 312 170 88 38 178 70 256 92 72 20 136 30 180 30h12c-4-4-10-12-16-18-20-20-48-44-82-68 8-22 10-24 12-48z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-planet" + ], + "defaultCode": 62275, + "grid": 0 + }, + "properties": { + "id": 583, + "order": 584, + "ligatures": "", + "prevSize": 32, + "code": 62275, + "name": "ion-planet" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 582 + }, + { + "icon": { + "paths": [ + "M618 466c14 12 22 28 22 46s-8 34-22 46l-556 332c-8 4-14 6-22 6-22 0-40-18-40-40v0-688c0-22 18-40 40-40 8 0 16 2 22 6z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-play" + ], + "defaultCode": 61973, + "grid": 0 + }, + "properties": { + "id": 584, + "order": 585, + "ligatures": "", + "prevSize": 32, + "code": 61973, + "name": "ion-play" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 583 + }, + { + "icon": { + "paths": [ + "M800 406c0 22 0 44-4 66-4 20-10 40-20 56-8 14-20 26-36 34-14 8-32 12-48 12-26 0-62-8-84-18v-266c0-18-14-34-30-34h-2c-18 0-32 16-32 34v606l-160-52v-716s56 8 150 36 134 42 168 62c16 10 30 22 42 34 14 14 26 28 34 46 16 32 20 66 22 100zM174 716c-8 4-16 6-22 12-2 2-6 6-4 10s8 8 12 10c12 4 26 6 38 6 14 0 30 0 44-4 10-2 18-6 28-10 60-20 82-24 82-24v84c-28 4-72 8-100 8-60 2-120-8-176-26-18-6-38-12-54-24-8-6-16-16-20-26-4-8-2-18 2-26s10-16 18-22c18-12 36-20 56-28 16-8 34-14 52-20 70-24 222-74 222-74v94s-124 40-178 60zM1024 692c0 10-4 18-10 26-12 14-28 22-44 30s-34 16-52 22c-108 38-342 118-342 118v-96s184-60 266-88c12-4 22-8 32-16 4-4 8-6 6-12-2-4-8-8-12-10-12-4-26-6-38-6-20 0-40 4-60 10-58 20-194 64-194 64v-98s90-28 134-32c16-2 46-2 62-2 52 0 108 6 158 22 10 4 16 6 28 10 18 6 36 16 50 28 8 8 16 18 16 30z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-playstation" + ], + "defaultCode": 62218, + "grid": 0 + }, + "properties": { + "id": 585, + "order": 586, + "ligatures": "", + "prevSize": 32, + "code": 62218, + "name": "ion-playstation" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 584 + }, + { + "icon": { + "paths": [ + "M448 64c248 0 448 200 448 448s-200 448-448 448-448-200-448-448 200-448 448-448zM704 544v-64h-224v-224h-64v224h-224v64h224v224h64v-224h224z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-plus-circled" + ], + "defaultCode": 61974, + "grid": 0 + }, + "properties": { + "id": 586, + "order": 587, + "ligatures": "", + "prevSize": 32, + "code": 61974, + "name": "ion-plus-circled" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 585 + }, + { + "icon": { + "paths": [ + "M706 448c34 0 62 28 62 64s-28 64-62 64h-258v258c0 34-28 62-64 62s-64-28-64-62v-258h-258c-34 0-62-28-62-64s28-64 62-64h258v-258c0-34 28-62 64-62s64 28 64 62v258h258z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-plus-round" + ], + "defaultCode": 61975, + "grid": 0 + }, + "properties": { + "id": 587, + "order": 588, + "ligatures": "", + "prevSize": 32, + "code": 61975, + "name": "ion-plus-round" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 586 + }, + { + "icon": { + "paths": [ + "M768 448v128h-320v320h-128v-320h-320v-128h320v-320h128v320h320z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-plus" + ], + "defaultCode": 61976, + "grid": 0 + }, + "properties": { + "id": 588, + "order": 589, + "ligatures": "", + "prevSize": 32, + "code": 61976, + "name": "ion-plus" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 587 + }, + { + "icon": { + "paths": [ + "M0 896v-384h256v384h-256zM320 896v-576h256v576h-256zM640 896v-256h256v256h-256z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-podium" + ], + "defaultCode": 62276, + "grid": 0 + }, + "properties": { + "id": 589, + "order": 590, + "ligatures": "", + "prevSize": 32, + "code": 62276, + "name": "ion-podium" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 588 + }, + { + "icon": { + "paths": [ + "M186 704h-186v-108h202l26-168h-198v-108h214l44-256h128l-44 256h212l44-256h126l-44 256h186v108h-204l-24 168h198v108h-214l-44 256h-126l44-256h-214l-44 256h-126zM354 428l-24 168h212l24-168h-212z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-pound" + ], + "defaultCode": 61977, + "grid": 0 + }, + "properties": { + "id": 590, + "order": 591, + "ligatures": "", + "prevSize": 32, + "code": 61977, + "name": "ion-pound" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 589 + }, + { + "icon": { + "paths": [ + "M448 512c-36 0-64-28-64-64v-320c0-36 28-64 64-64s64 28 64 64v320c0 36-28 64-64 64zM694 138c122 80 202 218 202 374 0 248-200 448-448 448s-448-200-448-448c0-156 80-294 202-374v0c10-6 22-10 34-10 36 0 64 28 64 64 0 12-4 24-10 34-4 6-8 12-14 16-2 2-6 4-8 6-16 12-32 24-46 38-60 60-94 140-94 226s34 166 94 226 140 94 226 94 166-34 226-94 94-140 94-226-34-166-94-226c-14-14-30-26-46-38-2-2-6-4-8-6-6-4-10-10-14-16-6-10-10-22-10-34 0-36 28-64 64-64 12 0 24 4 34 10v0z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-power" + ], + "defaultCode": 62121, + "grid": 0 + }, + "properties": { + "id": 591, + "order": 592, + "ligatures": "", + "prevSize": 32, + "code": 62121, + "name": "ion-power" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 590 + }, + { + "icon": { + "paths": [ + "M878 522c24 24 24 62 0 86l-330 334c-22 22-60 22-84 2l-6-6-412-418-12-10c-12-14-18-30-20-48v0-4l-14-196v-8c0-24 8-48 26-66l98-98c16-18 40-26 62-26h8l200 8c24 0 44 8 60 24v0l4 4 420 422zM224 384c52 0 96-44 96-96s-44-96-96-96-96 44-96 96 44 96 96 96z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-pricetag" + ], + "defaultCode": 62122, + "grid": 0 + }, + "properties": { + "id": 592, + "order": 593, + "ligatures": "", + "prevSize": 32, + "code": 62122, + "name": "ion-pricetag" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 591 + }, + { + "icon": { + "paths": [ + "M880 478c20 22 22 56 0 78l-58 58c22-22 20-56 0-78v0 0l-382-384h-2c-16-14-32-24-54-24v0l-180-6h-8c-18 0-38 6-52 20l56-54c16-16 34-24 54-24h8l180 8c22 0 38 8 54 22h2l2 2 380 382zM792 564v0c22 22 22 58 0 80l-216 218v-2l-52 54-30 30c-20 20-52 20-74 2l-6-6-382-386c-10-12-18-28-20-44v0-4l-12-176v-8c0-22 8-42 24-58l92-94c14-12 34-18 52-18h8l180 6c22 0 38 8 54 22v0l4 2 378 382zM158 280c-24 16-42 42-42 74 0 48 38 86 86 86 32 0 58-18 74-42 8-14 14-28 14-44 0-48-40-88-88-88-16 0-30 6-44 14z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-pricetags" + ], + "defaultCode": 62123, + "grid": 0 + }, + "properties": { + "id": 593, + "order": 594, + "ligatures": "", + "prevSize": 32, + "code": 62123, + "name": "ion-pricetags" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 592 + }, + { + "icon": { + "paths": [ + "M784 256c56 0 112 38 112 110v262c0 62-56 108-112 108h-80v224h-512v-224h-80c-56 0-112-48-112-124v-246c0-76 56-110 112-110h80v-128h512v128h80zM672 928v-352h-448v352h448zM672 256v-96h-448v96h448zM768 384v-32h-34v32h34zM256 672v-32h384v32h-384zM256 768v-32h384v32h-384zM256 864v-32h384v32h-384z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-printer" + ], + "defaultCode": 61978, + "grid": 0 + }, + "properties": { + "id": 594, + "order": 595, + "ligatures": "", + "prevSize": 32, + "code": 61978, + "name": "ion-printer" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 593 + }, + { + "icon": { + "paths": [ + "M128 128c70 0 128 58 128 128 0 48-26 88-64 110v356c38 22 64 62 64 110 0 70-58 128-128 128s-128-58-128-128c0-48 26-88 64-110v-356c-38-22-64-62-64-110 0-70 58-128 128-128zM128 896c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM128 320c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM702 720c40 22 66 64 66 112 0 70-58 128-128 128s-128-58-128-128c0-46 24-88 62-110v-312c0-32-8-52-22-66-20-18-52-24-104-24v128l-192-192 192-192v128c84-2 148 16 192 58 42 38 62 92 62 160v310zM640 896c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-pull-request" + ], + "defaultCode": 62277, + "grid": 0 + }, + "properties": { + "id": 595, + "order": 596, + "ligatures": "", + "prevSize": 32, + "code": 62277, + "name": "ion-pull-request" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 594 + }, + { + "icon": { + "paths": [ + "M96 248v136h-96v-136c0-66 56-120 122-120h134v96h-136c-14 0-24 10-24 24zM712 128c66 0 120 54 120 120v136h-96v-136c0-14-12-24-26-24h-134v-96h136zM736 774v-134h96v134c0 66-54 122-120 122h-136v-98h136c14 0 24-10 24-24zM120 798h136v98h-134c-66 0-122-56-122-122v-134h96v134c0 14 10 24 24 24z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-qr-scanner" + ], + "defaultCode": 62278, + "grid": 0 + }, + "properties": { + "id": 596, + "order": 597, + "ligatures": "", + "prevSize": 32, + "code": 62278, + "name": "ion-qr-scanner" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 595 + }, + { + "icon": { + "paths": [ + "M256 128c-82 0-146 22-190 66s-66 108-66 190v512h320v-512h-192c0-46 10-78 30-98s52-30 98-30zM704 128c-82 0-146 22-190 66s-66 108-66 190v512h320v-512h-192c0-46 10-78 30-98s52-30 98-30z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-quote" + ], + "defaultCode": 62279, + "grid": 0 + }, + "properties": { + "id": 597, + "order": 598, + "ligatures": "", + "prevSize": 32, + "code": 62279, + "name": "ion-quote" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 596 + }, + { + "icon": { + "paths": [ + "M320 512c0-86 42-128 128-128s128 42 128 128-42 128-128 128-128-42-128-128zM224 512c0 36 10 70 26 100s38 56 66 74l-46 50c-12-10-26-20-36-32-50-52-74-118-74-192s24-140 74-192c10-12 24-22 36-32l46 50c-28 18-50 44-66 74s-26 64-26 100zM672 512c0-36-10-70-26-100s-38-56-66-74l46-50c12 10 26 20 36 32 50 52 74 118 74 192s-24 140-74 192c-10 12-24 22-36 32l-46-50c28-18 50-44 66-74s26-64 26-100zM64 512c0 54 12 106 34 154s54 86 94 118l-46 48c-12-10-24-20-34-32-36-38-62-82-82-130-20-50-30-102-30-158s10-108 30-158c20-48 46-92 82-130 10-12 22-22 34-32l46 48c-20 16-36 34-52 54s-28 42-40 64-20 48-26 74-10 52-10 80zM832 512c0-54-12-106-34-154s-54-86-94-118l46-48c12 10 24 20 34 32 36 38 62 82 82 130 20 50 30 102 30 158s-10 108-30 158c-20 48-46 92-82 130-8 10-20 20-34 32l-46-48c40-32 72-70 94-118s34-100 34-154z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-radio-waves" + ], + "defaultCode": 62124, + "grid": 0 + }, + "properties": { + "id": 598, + "order": 599, + "ligatures": "", + "prevSize": 32, + "code": 62124, + "name": "ion-radio-waves" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 597 + }, + { + "icon": { + "paths": [ + "M416 928c-230 0-416-186-416-416s186-416 416-416 416 186 416 416-186 416-416 416z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-record" + ], + "defaultCode": 61979, + "grid": 0 + }, + "properties": { + "id": 599, + "order": 600, + "ligatures": "", + "prevSize": 32, + "code": 61979, + "name": "ion-record" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 598 + }, + { + "icon": { + "paths": [ + "M704 704l-208-224h148c-14-130-128-224-260-224-142 0-256 114-256 256s114 256 256 256c56 0 106-16 150-48l12-10 86 92-14 12c-68 52-148 82-234 82-182 0-334-128-374-298v0c0-2-2-4-2-6v-6s-2-4-2-6v-2c0-2-2-6-2-8v0c-2-12-4-26-4-38v-40c0-12 2-26 4-38v0c0-2 2-6 2-8v-2c0-2 2-2 2-4v-8c0-2 2-4 2-6v0c40-170 192-298 374-298v0 0c22 0 42 2 62 6h8c114 20 212 94 266 192 26 46 42 98 46 154h130z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-refresh" + ], + "defaultCode": 61980, + "grid": 0 + }, + "properties": { + "id": 600, + "order": 601, + "ligatures": "", + "prevSize": 32, + "code": 61980, + "name": "ion-refresh" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 599 + }, + { + "icon": { + "paths": [ + "M514 384c306 0 318 416 318 416-102-186-182-204-318-204v184l-304-268 304-288v160zM0 512l288-272v114l-164 158 164 136v116z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-reply-all" + ], + "defaultCode": 61981, + "grid": 0 + }, + "properties": { + "id": 601, + "order": 602, + "ligatures": "", + "prevSize": 32, + "code": 61981, + "name": "ion-reply-all" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 600 + }, + { + "icon": { + "paths": [ + "M768 800c-106-186-244-204-448-204v184l-320-268 320-288v160c374 0 448 416 448 416z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-reply" + ], + "defaultCode": 61982, + "grid": 0 + }, + "properties": { + "id": 602, + "order": 603, + "ligatures": "", + "prevSize": 32, + "code": 61982, + "name": "ion-reply" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 601 + }, + { + "icon": { + "paths": [ + "M544 64l160 192-128 268c-48-60-118-98-198-106zM160 64l166 354c-80 8-150 46-198 106l-128-268zM378 64h134l-106 224h-108l-106-224h186zM352 448c142 0 256 114 256 256s-114 256-256 256-256-114-256-256 114-256 256-256zM352 896c106 0 192-86 192-192s-86-192-192-192-192 86-192 192 86 192 192 192zM352 528c98 0 176 78 176 176s-78 176-176 176-176-78-176-176 78-176 176-176z" + ], + "width": 704, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ribbon-a" + ], + "defaultCode": 62280, + "grid": 0 + }, + "properties": { + "id": 603, + "order": 604, + "ligatures": "", + "prevSize": 32, + "code": 62280, + "name": "ion-ribbon-a" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 602 + }, + { + "icon": { + "paths": [ + "M384 144c98 0 176 78 176 176s-78 176-176 176-176-78-176-176 78-176 176-176zM384 64c142 0 256 114 256 256s-114 256-256 256-256-114-256-256 114-256 256-256zM384 512c106 0 192-86 192-192s-86-192-192-192-192 86-192 192 86 192 192 192zM166 508c52 60 130 100 218 100 24 0 46-2 68-8l-68 148-96 212-96-160h-192zM602 508l166 292h-192l-96 160-80-176 90-196c44-18 82-46 112-80z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-ribbon-b" + ], + "defaultCode": 62281, + "grid": 0 + }, + "properties": { + "id": 604, + "order": 605, + "ligatures": "", + "prevSize": 32, + "code": 62281, + "name": "ion-ribbon-b" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 603 + }, + { + "icon": { + "paths": [ + "M734 568c6 18-4 34-22 38-6 2-14 0-20-2-10-4-18-10-22-20s-8-24-26-30-28 0-38 6c-8 6-20 6-30 2-6-2-14-6-18-12-12-16-6-34 10-44 30-18 58-26 98-12s58 42 68 74zM330 506c16 10 20 28 8 44-4 6-12 10-18 12-10 4-22 4-30-2-10-6-20-12-38-6s-22 20-26 30-12 16-22 20c-6 2-14 4-20 2-18-4-28-20-22-38 10-32 28-60 68-74s70-6 100 12zM448 64c248 0 448 200 448 448s-200 448-448 448-448-200-448-448 200-448 448-448zM720 784c72-72 112-170 112-272s-40-200-112-272-170-112-272-112-200 40-272 112-112 170-112 272 40 200 112 272 170 112 272 112 200-40 272-112zM634 718c10 14 6 34-8 44-6 4-12 6-18 6-10 0-20-6-26-14 0 0-38-50-134-50s-134 50-134 50c-6 8-16 14-26 14-6 0-12-2-18-6-14-10-18-30-8-44 2-4 56-78 186-78s184 74 186 78z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-sad-outline" + ], + "defaultCode": 62679, + "grid": 0 + }, + "properties": { + "id": 605, + "order": 606, + "ligatures": "", + "prevSize": 32, + "code": 62679, + "name": "ion-sad-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 604 + }, + { + "icon": { + "paths": [ + "M448 64c248 0 448 200 448 448s-200 448-448 448-448-200-448-448 200-448 448-448zM226 584c4-10 8-24 26-30s28 0 38 6c8 6 20 6 30 2 6-2 14-6 18-12 12-16 8-34-8-44-30-18-60-26-100-12s-58 42-68 74c-6 18 4 34 22 38 6 2 14 0 20-2 10-4 18-10 22-20zM626 762c14-10 18-30 8-44-2-4-56-78-186-78s-184 74-186 78c-10 14-6 34 8 44 6 4 12 6 18 6 10 0 20-6 26-14 0 0 38-50 134-50s134 50 134 50c6 8 16 14 26 14 6 0 12-2 18-6zM712 606c18-4 28-20 22-38-10-32-28-60-68-74s-68-6-98 12c-16 10-22 28-10 44 4 6 12 10 18 12 10 4 22 4 30-2 10-6 20-12 38-6s22 20 26 30 12 16 22 20c6 2 14 4 20 2z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-sad" + ], + "defaultCode": 62282, + "grid": 0 + }, + "properties": { + "id": 606, + "order": 607, + "ligatures": "", + "prevSize": 32, + "code": 62282, + "name": "ion-sad" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 605 + }, + { + "icon": { + "paths": [ + "M682 232c-26 66-234 344-234 344l-64 64s-62 26-100 86-66 142-66 142v0c-14 52-56 92-106 92-62 0-112-58-112-128s50-128 112-128c26 0 50 10 68 26 4 2 6 6 8 8v0l4 4c8 8 14 4 28-22 16-30 34-70 54-108s76-118 76-118l34-46 288-384c46 40 36 102 10 168zM112 896c30 0 56-28 56-64s-26-64-56-64-56 28-56 64 26 64 56 64zM384 576c18 0 32-14 32-32s-14-32-32-32-32 14-32 32 14 32 32 32zM286 530c-60-82-180-250-200-298-26-66-36-128 10-168l268 356-6 8-34 46v2c-2 2-20 26-38 54zM656 704c62 0 112 58 112 128s-50 128-112 128c-50 0-94-40-108-92v0s-26-82-64-142c-22-34-52-56-72-70l60-60h2c2-2 2-4 4-8 6 8 10 18 14 24 20 38 40 78 56 108 14 26 20 30 28 22 2-2 0-2 2-4h2c2-2 4-6 8-8 18-16 42-26 68-26zM656 896c30 0 56-28 56-64s-26-64-56-64-56 28-56 64 26 64 56 64z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-scissors" + ], + "defaultCode": 62283, + "grid": 0 + }, + "properties": { + "id": 607, + "order": 608, + "ligatures": "", + "prevSize": 32, + "code": 62283, + "name": "ion-scissors" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 606 + }, + { + "icon": { + "paths": [ + "M762 774c8 8 8 20 0 28l-86 88c-4 4-10 6-16 6s-10-2-14-6l-168-172c-50 30-104 46-160 46-174 0-318-142-318-318s144-318 318-318 316 142 316 318c0 54-14 108-42 156zM318 252c-106 0-194 86-194 194s88 194 194 194 192-86 192-194-86-194-192-194z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-search" + ], + "defaultCode": 61983, + "grid": 0 + }, + "properties": { + "id": 608, + "order": 609, + "ligatures": "", + "prevSize": 32, + "code": 61983, + "name": "ion-search" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 607 + }, + { + "icon": { + "paths": [ + "M804 276c20 12 30 50 28 72-2 34-14 72-50 108-2 2-4 2-6 4-52 50-124 60-188 40-2-2-4-4-8-4-10-2-20 0-26 8l-72 78c104 100 214 192 214 192 4 4 4 10 0 14l-100 102c-4 4-10 4-14 0 0 0-88-110-186-214l-184 196c-28 32-80 30-110 0-30-32-30-84 2-112l194-186-24-24c-4-4-6-14-2-20l4-10c-50-52-72-66-112-64s-72 26-96 56-20 104-16 124-14 12-24 0c-18-20-46-100-12-186s84-138 96-150 32-30 48-42 42 2 54-10c8-8 10-22 10-32l-8-8c-4-4-4-10 0-14l62-62c4-4 10-4 14 0l100 100c4 4 4 12 0 16l-62 62c-4 4-10 4-14 0l-16-18c-14 0-30 10-34 20-6 12-12 42-6 66 6 22 26 40 72 86l10-6c8-4 16-2 20 2 0 0 2 4 26 28l76-74c8-6 10-14 8-26 0-4 0-8-2-10-20-66-12-138 38-192l4-4c36-36 72-50 106-52 20-2 60 10 70 30l-96 96-4 6-2 2c-2 2-2 4-2 8s0 6 2 10l8 8 82 84 8 8c2 2 4 2 8 2s6 0 8-2l4-2 4-6z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-settings" + ], + "defaultCode": 62125, + "grid": 0 + }, + "properties": { + "id": 609, + "order": 610, + "ligatures": "", + "prevSize": 32, + "code": 62125, + "name": "ion-settings" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 608 + }, + { + "icon": { + "paths": [ + "M576 756v-118l76-62v218c0 22-16 38-38 38h-576c-22 0-38-18-38-38v-436c0-22 16-38 38-38h240c-58 36-86 76-86 76h-116v360h500zM512 448c-168 0-232 48-320 192 0 0 10-328 320-328v-120l256 192-256 192v-128z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-share" + ], + "defaultCode": 61984, + "grid": 0 + }, + "properties": { + "id": 610, + "order": 611, + "ligatures": "", + "prevSize": 32, + "code": 61984, + "name": "ion-share" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 609 + }, + { + "icon": { + "paths": [ + "M676 362c-104 0-166 86-240 184-82 110-176 240-342 240h-94v-126h94c104 0 168-94 242-192 82-110 174-232 340-232h58v-108l162 162-162 168v-96h-58zM242 436c-42-42-84-70-148-72-68-2-94 0-94 0v-126h94c96 0 166 40 226 96-20 24-38 48-56 72-8 10-14 20-22 30zM734 660v-94l162 168-162 162v-108h-58c-100 0-174-46-234-106 24-28 44-56 64-82 4-6 10-12 14-18 44 48 92 78 156 78h58z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-shuffle" + ], + "defaultCode": 61985, + "grid": 0 + }, + "properties": { + "id": 611, + "order": 612, + "ligatures": "", + "prevSize": 32, + "code": 61985, + "name": "ion-shuffle" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 610 + }, + { + "icon": { + "paths": [ + "M24 192h16c14 0 24 10 24 24v226l374-244c4-4 10-6 16-6 16 0 32 14 32 34v126l236-156c4-4 10-4 16-4 16 0 30 14 30 34v572c0 20-14 34-30 34-6 0-10-2-16-6l-236-156v128c0 20-16 34-32 34-6 0-10-2-16-6l-374-244v226c0 14-10 24-24 24h-16c-14 0-24-10-24-24v-592c0-14 10-24 24-24z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-skip-backward" + ], + "defaultCode": 61986, + "grid": 0 + }, + "properties": { + "id": 612, + "order": 613, + "ligatures": "", + "prevSize": 32, + "code": 61986, + "name": "ion-skip-backward" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 611 + }, + { + "icon": { + "paths": [ + "M744 192c14 0 24 10 24 24v592c0 14-10 24-24 24h-16c-14 0-24-10-24-24v-226l-374 244c-6 4-10 6-16 6-16 0-30-14-30-34v-128l-238 156c-6 4-10 6-16 6-16 0-30-14-30-34v-572c0-20 14-34 30-34 6 0 12 0 16 4l238 156v-126c0-20 14-34 30-34 6 0 12 2 16 6l374 244v-226c0-14 10-24 24-24h16z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-skip-forward" + ], + "defaultCode": 61987, + "grid": 0 + }, + "properties": { + "id": 613, + "order": 614, + "ligatures": "", + "prevSize": 32, + "code": 61987, + "name": "ion-skip-forward" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 612 + }, + { + "icon": { + "paths": [ + "M544 416h-384v298h80v134c0 8 8 16 16 16s16-8 16-16v-134h162v134c0 4 2 8 6 12h2c2 2 4 4 8 4h2c8 0 14-8 14-16v-134h78v-298zM576 384v0 332c0 14-6 30-20 30h-58v102c0 26-20 48-46 48v0h-2c-12 0-22-4-30-10-10-8-18-22-18-38v-102h-98v102c0 26-22 48-48 48s-48-22-48-48v-102h-56c-14 0-24-16-24-30v-332h448zM656 384c-8 0-16 8-16 16v192c0 8 8 16 16 16s16-8 16-16v-192c0-8-8-16-16-16zM656 352v0c26 0 48 22 48 48v192c0 26-22 48-48 48s-48-22-48-48v-192c0-26 22-48 48-48zM48 384c-8 0-16 8-16 16v192c0 8 8 16 16 16s16-8 16-16v-192c0-8-8-16-16-16zM48 352v0c26 0 48 22 48 48v192c0 26-22 48-48 48s-48-22-48-48v-192c0-26 22-48 48-48zM350 188c-28 0-54 6-76 12l-20 8c-56 24-80 74-88 112h372c-8-36-30-86-88-112l-20-8c-24-8-50-12-78-12v0 0h-2zM210 128v0h2l38 46c26-10 60-18 100-18h2c40 0 72 8 100 18l40-46s2 2 4 2c2 2 4 6 4 6l-38 44c96 42 112 142 114 172h-448c2-30 18-132 114-174l-38-44c0-2 2-2 4-4zM254 278c-14 0-28-12-28-26s12-28 28-28c14 0 26 14 26 28s-10 26-26 26zM450 278c-14 0-26-12-26-26s10-28 26-28c14 0 26 14 26 28s-12 26-26 26z" + ], + "width": 704, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-android-outline" + ], + "defaultCode": 61988, + "grid": 0 + }, + "properties": { + "id": 614, + "order": 615, + "ligatures": "", + "prevSize": 32, + "code": 61988, + "name": "ion-social-android-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 613 + }, + { + "icon": { + "paths": [ + "M128 536v-152h448v332c0 14-8 28-22 28h-56v104c0 26-22 48-48 48v0h-2c-12 0-20-4-28-10-10-8-18-22-18-38v-104h-98v104c0 26-22 48-48 48s-48-22-48-48v-104h-58c-14 0-22-14-22-28v-180zM656 352c26 0 48 22 48 48v192c0 26-22 48-48 48s-48-22-48-48v-192c0-26 22-48 48-48zM48 352c26 0 48 22 48 48v192c0 26-22 48-48 48s-48-22-48-48v-192c0-26 22-48 48-48zM462 178c96 42 112 144 114 174h-448c2-30 16-132 112-174l-36-44c0-2 0-2 2-4s6-2 6-2l38 46c28-10 62-18 102-18s72 8 100 18l40-46c0-2 2 0 4 2l4 4zM254 278c16 0 26-12 26-26s-12-28-26-28c-16 0-28 14-28 28s14 26 28 26zM450 278c14 0 28-12 28-26s-14-28-28-28c-16 0-26 14-26 28s12 26 26 26z" + ], + "width": 704, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-android" + ], + "defaultCode": 61989, + "grid": 0 + }, + "properties": { + "id": 615, + "order": 616, + "ligatures": "", + "prevSize": 32, + "code": 61989, + "name": "ion-social-android" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 614 + }, + { + "icon": { + "paths": [ + "M448 128l-376 138 78 460 298 160 298-160 78-460zM448 64v0l448 160-92 544-356 192-356-192-92-544zM624 704l-54-112h-244l-54 112h-80l256-560 256 560h-80zM364 512h168l-84-178z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-angular-outline" + ], + "defaultCode": 62680, + "grid": 0 + }, + "properties": { + "id": 616, + "order": 617, + "ligatures": "", + "prevSize": 32, + "code": 62680, + "name": "ion-social-angular-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 615 + }, + { + "icon": { + "paths": [ + "M364 512l84-178 84 178h-168zM448 64l448 160-92 544-356 192-356-192-92-544zM624 704h80l-256-560-256 560h80l54-112h244z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-angular" + ], + "defaultCode": 62681, + "grid": 0 + }, + "properties": { + "id": 617, + "order": 618, + "ligatures": "", + "prevSize": 32, + "code": 62681, + "name": "ion-social-angular" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 616 + }, + { + "icon": { + "paths": [ + "M476 340c-30 0-52 8-74 16-20 8-42 16-70 16s-50-8-74-16c-22-8-44-16-68-16-22 0-46 6-68 20-24 14-46 36-62 62-24 36-32 94-26 154 6 68 32 138 70 198 26 42 60 90 100 90h2c16 0 26-6 40-12 20-10 46-20 88-20v0c42 0 68 10 88 20 14 6 24 12 38 12v0c44 0 88-70 104-96 16-24 24-40 34-62-24-14-44-32-60-56-20-30-34-66-36-104-2-36 4-74 20-106 12-24 28-44 48-60-28-26-62-40-94-40zM476 308v0c50 0 104 28 142 78-126 72-106 256 22 306-18 40-26 56-48 92-32 50-74 112-130 112h-2c-48 0-62-32-126-32v0c-66 0-80 32-128 32h-2c-56 0-96-56-128-106-88-138-96-300-42-386 38-60 100-96 156-96 58 0 94 32 142 32 46 0 76-32 144-32zM428 168c-22 10-42 26-56 44-8 10-18 26-26 46-2 6-4 12-4 18 22-8 42-22 56-42 8-10 24-36 30-66zM460 128v0c6 46-12 92-36 124-26 34-70 60-112 60h-2c-8-44 12-88 36-120 28-34 74-62 114-64z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-apple-outline" + ], + "defaultCode": 61990, + "grid": 0 + }, + "properties": { + "id": 618, + "order": 619, + "ligatures": "", + "prevSize": 32, + "code": 61990, + "name": "ion-social-apple-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 617 + }, + { + "icon": { + "paths": [ + "M476 308v0c50 0 104 28 142 78-126 72-106 256 22 306-18 40-26 56-48 92-32 50-74 112-130 112h-2c-48 0-62-32-126-32v0c-66 0-80 32-128 32h-2c-56 0-96-56-128-106-88-138-96-300-42-386 38-60 100-96 156-96 58 0 94 32 142 32 46 0 76-32 144-32zM460 128v0c6 46-12 92-36 124-26 34-70 60-112 60h-2c-8-44 12-88 36-120 28-34 74-62 114-64z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-apple" + ], + "defaultCode": 61991, + "grid": 0 + }, + "properties": { + "id": 619, + "order": 620, + "ligatures": "", + "prevSize": 32, + "code": 61991, + "name": "ion-social-apple" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 618 + }, + { + "icon": { + "paths": [ + "M368 96h-16v128h-128v-128h-18v128h-176v32h26c22 0 38 0 50 6s20 14 26 26 6 16 6 40v356c0 22 0 36-6 48v2c-2 6-8 20-24 28h-2c-10 6-16 6-34 6h-26l-6 32h166v128h18v-128h128v128h16v-130h30c46-2 82-10 110-20 32-12 56-30 74-52 16-22 24-58 26-84 2-28-2-58-8-72s-16-32-42-46c-14-8-28-12-42-16l-92-22 86-38c8-4 14-8 24-18 12-10 18-24 22-32 4-10 8-26 6-44-2-34-8-58-20-74-14-18-34-32-62-42-24-10-48-14-82-16l-30-2v-124zM400 64v0 126c40 2 64 8 90 18 32 12 58 30 76 54s24 56 26 90c2 20 0 40-6 56s-16 32-32 46c-12 12-22 18-32 22 18 4 34 12 50 20 30 16 48 36 58 60 8 20 12 60 10 88-2 32-12 74-32 102-22 28-52 48-90 62-30 12-66 20-118 22v130h-80v-128h-64v128h-82v-128h-174l16-96h56c18 0 16-2 22-4s8-6 10-12 2-18 2-36v-356c0-18 0-20-2-24s-6-8-12-12-18-4-36-4h-56v-96h174v-128h82v128h64v-128h80zM320 300v148h-64v-148h64zM320 544v0 180h-64v-180h64zM400 308v0c12 4 20 14 28 24 8 12 12 26 12 42s-4 30-14 42c-8 10-14 18-26 24v-132zM400 548v0c10 2 16 2 24 6 16 6 28 14 38 26s16 30 16 48c0 22-4 38-20 52s-26 22-46 30c-4 2-8 0-12 2v-164z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-bitcoin-outline" + ], + "defaultCode": 62126, + "grid": 0 + }, + "properties": { + "id": 620, + "order": 621, + "ligatures": "", + "prevSize": 32, + "code": 62126, + "name": "ion-social-bitcoin-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 619 + }, + { + "icon": { + "paths": [ + "M628 558c8 20 14 60 12 88-2 32-10 74-32 102s-52 48-90 62c-30 12-66 20-118 22v128h-80v-128h-64v128h-82v-128h-174l18-96h52c18 0 18 0 24-2s8-8 10-14 4-16 4-34v-346c0-18-2-32-4-36s-6-8-12-12-18-4-36-4h-56v-96h174v-128h82v128h64v-128h80v128c40 2 66 8 92 18 32 12 56 30 74 54s24 56 26 90c2 20 0 40-6 56-4 16-16 32-32 46-12 12-22 18-32 22 18 4 34 12 50 20 30 16 46 36 56 60zM256 300v148h64v-148h-64zM256 724h64v-180h-64v180zM400 308v132c12-6 18-14 26-24 10-12 14-24 14-40s-4-30-12-42c-8-10-16-22-28-26zM458 682c16-14 20-30 20-52 0-18-6-38-16-50s-24-20-40-26c-8-4-12-4-22-6v164c4 0 10-2 14-4 20-8 28-12 44-26z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-bitcoin" + ], + "defaultCode": 62127, + "grid": 0 + }, + "properties": { + "id": 621, + "order": 622, + "ligatures": "", + "prevSize": 32, + "code": 62127, + "name": "ion-social-bitcoin" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 620 + }, + { + "icon": { + "paths": [ + "M14 328c-18-8-18-22 0-30l338-164c8-4 20-6 32-6s24 2 32 6l338 164c18 8 18 22 0 30l-338 164c-8 4-20 6-32 6s-24-2-32-6zM366 164l-312 150 312 150c4 2 10 2 18 2s14 0 18-2l312-150-312-150c-4-2-10-4-18-4s-14 2-18 4zM754 496c18 8 18 24 0 32l-338 162c-8 4-20 8-32 8s-24-4-32-8l-338-162c-18-8-18-24 0-32 0 0 54-26 66-32 10-6 14-6 26 0s246 120 246 120c8 4 20 6 32 6s24-2 32-6c0 0 242-118 250-122s10-4 18 0 70 34 70 34zM402 662l312-150-38-18-246 118c-12 6-30 10-46 10s-34-4-46-10l-246-118-38 18 312 150c4 2 10 4 18 4s14-2 18-4zM754 696c18 8 18 22 0 30l-338 164c-8 4-20 6-32 6s-24-2-32-6l-338-164c-18-8-18-22 0-30 0 0 54-28 66-34 10-6 14-4 26 2s246 118 246 118c8 4 20 6 32 6s24-2 32-6c0 0 242-116 250-120s10-4 18 0 70 34 70 34zM402 860l312-150-38-18-246 120c-12 6-30 8-46 8s-34-2-46-8l-246-120-38 18 312 150c4 2 10 4 18 4s14-2 18-4z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-buffer-outline" + ], + "defaultCode": 61992, + "grid": 0 + }, + "properties": { + "id": 622, + "order": 623, + "ligatures": "", + "prevSize": 32, + "code": 61992, + "name": "ion-social-buffer-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 621 + }, + { + "icon": { + "paths": [ + "M14 328c-18-8-18-22 0-30l338-164c8-4 20-6 32-6s24 2 32 6l338 164c18 8 18 22 0 30l-338 164c-8 4-20 6-32 6s-24-2-32-6zM754 496c18 8 18 24 0 32l-338 162c-8 4-20 8-32 8s-24-4-32-8l-338-162c-18-8-18-24 0-32 0 0 54-26 66-32 10-6 14-6 26 0s246 120 246 120c8 4 20 6 32 6s24-2 32-6c0 0 242-118 250-122s10-4 18 0 70 34 70 34zM754 696c18 8 18 22 0 30l-338 164c-8 4-20 6-32 6s-24-2-32-6l-338-164c-18-8-18-22 0-30 0 0 54-28 66-34 10-6 14-4 26 2s246 118 246 118c8 4 20 6 32 6s24-2 32-6c0 0 242-116 250-120s10-4 18 0 70 34 70 34z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-buffer" + ], + "defaultCode": 61993, + "grid": 0 + }, + "properties": { + "id": 623, + "order": 624, + "ligatures": "", + "prevSize": 32, + "code": 61993, + "name": "ion-social-buffer" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 622 + }, + { + "icon": { + "paths": [ + "M448 64c246 0 448 202 448 448s-202 448-448 448-448-202-448-448 202-448 448-448zM448 154c-114 0-218 54-282 136l108 186c16-80 86-144 174-144h310c-60-108-178-178-310-178zM582 512c0-74-60-134-134-134s-134 60-134 134 60 134 134 134 134-60 134-134zM90 512c0 182 134 332 308 354l108-186c-18 6-38 12-58 12-68 0-122-36-154-90v0l-156-270c-32 54-48 116-48 180zM448 870c198 0 358-160 358-358 0-48-8-92-26-134h-216c38 34 64 80 64 134 0 34-10 64-26 90v0z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-chrome-outline" + ], + "defaultCode": 62682, + "grid": 0 + }, + "properties": { + "id": 624, + "order": 625, + "ligatures": "", + "prevSize": 32, + "code": 62682, + "name": "ion-social-chrome-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 623 + }, + { + "icon": { + "paths": [ + "M314 512c0-74 60-134 134-134s134 60 134 134-60 134-134 134-134-60-134-134zM890 436c4 24 6 50 6 76 0 212-148 390-348 436-20 4-40 8-60 10-14 2-26 2-40 2-16 0-34 0-50-2v0 0 0-2l204-354c16-26 26-56 26-90 0-54-26-100-64-134h312c6 18 10 38 14 58v0c-4-20-8-40-14-58v0c6 18 10 38 14 58v0zM448 690c20 0 40-4 58-10l-156 270c-84-18-158-60-216-118-84-82-134-194-134-320 0-62 12-122 36-176 14-32 32-62 52-90v0l206 356c32 54 86 88 154 88zM118 210v0-2c48-52 110-94 180-118 46-16 98-26 150-26 146 0 276 72 358 180h2c20 28 36 58 50 88v0c-14-30-30-60-50-88h-2c20 28 38 58 52 88h-410c-88 0-158 64-174 144z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-chrome" + ], + "defaultCode": 62683, + "grid": 0 + }, + "properties": { + "id": 625, + "order": 626, + "ligatures": "", + "prevSize": 32, + "code": 62683, + "name": "ion-social-chrome" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 624 + }, + { + "icon": { + "paths": [ + "M712 408c10 6 14 12 14 24v162c0 12-6 20-16 26-82 54-164 110-246 164-12 8-22 8-34 0-82-54-162-110-244-164-10-6-16-14-16-26v-160c0-12 6-22 16-28 82-54 162-108 244-162 12-8 22-8 34 0 82 54 166 110 248 164zM472 304v108c0 2 2 4 4 6 32 22 62 42 94 64 2 2 6 2 8 0l80-52zM424 306c0 0-124 82-186 124 28 18 54 34 80 52 2 2 6 2 8 0 30-20 62-42 92-62 2-2 6-8 6-12v-102zM218 474v80l60-40zM424 722v-106c0-2-4-6-6-8-30-20-62-42-92-62-4-2-6-2-10 0l-78 52c62 42 186 124 186 124zM454 566l78-52s-68-46-80-54c-2-2-8 0-10 2-10 6-18 12-28 18-16 12-50 34-50 34l78 52c4 2 8 2 12 0zM472 722l186-124-76-52c-4-4-10-4-14 0-30 20-60 42-90 62-4 4-6 6-6 12v102zM676 554v-80l-60 40zM448 128c-102 0-200 40-272 112s-112 170-112 272 40 200 112 272 170 112 272 112 200-40 272-112 112-170 112-272-40-200-112-272-170-112-272-112zM448 64v0c248 0 448 200 448 448s-200 448-448 448-448-200-448-448 200-448 448-448z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-codepen-outline" + ], + "defaultCode": 62684, + "grid": 0 + }, + "properties": { + "id": 626, + "order": 627, + "ligatures": "", + "prevSize": 32, + "code": 62684, + "name": "ion-social-codepen-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 625 + }, + { + "icon": { + "paths": [ + "M418 608c2 2 6 6 6 8v106s-124-82-186-124l78-52c4-2 6-2 10 0 30 20 62 42 92 62zM326 482c-2 2-6 2-8 0-26-18-52-34-80-52 62-42 186-124 186-124v102c0 4-4 10-6 12-30 20-62 42-92 62zM476 418c-2-2-4-4-4-6v-108l186 126-80 52c-2 2-6 2-8 0-32-22-62-42-94-64zM452 460c12 8 80 54 80 54l-78 52c-4 2-8 2-12 0l-78-52s34-22 50-34c10-6 18-12 28-18 2-2 8-4 10-2zM218 474l60 40-60 40v-80zM448 64c248 0 448 200 448 448s-200 448-448 448-448-200-448-448 200-448 448-448zM726 594v-162c0-12-4-18-14-24-82-54-166-110-248-164-12-8-22-8-34 0-82 54-162 108-244 162-10 6-16 16-16 28v160c0 12 6 20 16 26 82 54 162 110 244 164 12 8 22 8 34 0 82-54 164-110 246-164 10-6 16-14 16-26zM568 546c4-4 10-4 14 0l76 52-186 124v-102c0-6 2-8 6-12 30-20 60-42 90-62zM676 554l-60-40 60-40v80z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-codepen" + ], + "defaultCode": 62685, + "grid": 0 + }, + "properties": { + "id": 627, + "order": 628, + "ligatures": "", + "prevSize": 32, + "code": 62685, + "name": "ion-social-codepen" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 626 + }, + { + "icon": { + "paths": [ + "M582 734l-198 56-196-56-14-156h96l8 80 106 30 108-30 10-128h-224l-8-100h242l8-102h-368l-8-98h482zM0 64h768l-70 806-314 90-314-90zM638 822l60-694h-628l60 694 254 72z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-css3-outline" + ], + "defaultCode": 62686, + "grid": 0 + }, + "properties": { + "id": 628, + "order": 629, + "ligatures": "", + "prevSize": 32, + "code": 62686, + "name": "ion-social-css3-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 627 + }, + { + "icon": { + "paths": [ + "M384 678v0zM0 64h768l-70 806-314 90-314-90zM582 734l44-504h-482l8 98h368l-8 102h-242l8 100h224l-10 128-108 30-106-30-8-80h-96l14 156 196 56z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-css3" + ], + "defaultCode": 62687, + "grid": 0 + }, + "properties": { + "id": 629, + "order": 630, + "ligatures": "", + "prevSize": 32, + "code": 62687, + "name": "ion-social-css3" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 628 + }, + { + "icon": { + "paths": [ + "M518 292v106l-130-206zM594 192l302 238v402h-496l-400-312h126c92 0 154-66 154-164 0-40-10-74-30-102l-6-6 74 58v214h82l-4-196 126 196h72v-328zM864 800v-356l-238-184v-2 294h-122l-8-16-66-100 2 84v32h-146v-90c-6 12-14 24-24 34-16 18-36 32-60 42s-48 14-76 14h-32l318 248h452zM118 300h-8v114h8c16 0 26-4 34-12 10-12 12-30 12-44 0-52-24-58-46-58zM118 268v0c50 0 78 32 78 90 0 56-28 88-80 88h-38v-178h40z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-designernews-outline" + ], + "defaultCode": 61994, + "grid": 0 + }, + "properties": { + "id": 630, + "order": 631, + "ligatures": "", + "prevSize": 32, + "code": 61994, + "name": "ion-social-designernews-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 629 + }, + { + "icon": { + "paths": [ + "M516 290l2 106-128-204zM594 192l302 236v404h-496l-400-314h126c92 0 154-66 154-164 0-40-10-74-30-102l-6-6 74 58v214h80l-4-198 128 198h72v-326zM196 356c0 56-28 88-80 88h-38v-178h38c52 0 80 32 80 90z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-designernews" + ], + "defaultCode": 61995, + "grid": 0 + }, + "properties": { + "id": 631, + "order": 632, + "ligatures": "", + "prevSize": 32, + "code": 61995, + "name": "ion-social-designernews" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 630 + }, + { + "icon": { + "paths": [ + "M384 128c212 0 384 172 384 384s-172 384-384 384-384-172-384-384 172-384 384-384zM628 304c-34 50-94 94-170 128 10 20 18 40 26 62 66-6 150-8 220-4-4-70-32-136-76-186zM384 192c-28 0-52 4-78 10 46 46 86 106 124 174 68-28 124-66 158-110-56-46-126-74-204-74zM240 228c-82 42-142 116-166 206h50c88 0 170-12 242-34-38-68-80-126-126-172zM64 496v16c0 80 30 156 80 212 48-90 134-166 244-212 8-4 16-6 28-8-6-16-12-32-20-48-80 26-176 40-276 42-18 0-38-2-56-2zM384 832c40 0 78-6 114-20-6-50-16-106-30-158-8-34-20-66-32-98-14 4-26 8-34 12-96 44-172 112-214 196 54 42 122 68 196 68zM556 780c80-52 136-134 146-232-60-4-136-6-198 0 8 24 18 50 24 76 14 54 22 104 28 156z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-dribbble-outline" + ], + "defaultCode": 61996, + "grid": 0 + }, + "properties": { + "id": 632, + "order": 633, + "ligatures": "", + "prevSize": 32, + "code": 61996, + "name": "ion-social-dribbble-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 631 + }, + { + "icon": { + "paths": [ + "M384 128c212 0 384 172 384 384s-172 384-384 384-384-172-384-384 172-384 384-384zM384 832c176 0 320-144 320-320s-144-320-320-320-320 144-320 320 144 320 320 320zM484 494c-8-22-16-42-26-62 50-22 94-48 126-78 30 38 52 84 56 134-52 0-110 2-156 6zM542 312c-30 24-68 46-112 64-24-44-48-82-76-118 10-2 20-2 30-2 60 0 114 22 158 56zM284 276c30 36 56 78 82 124-68 20-144 32-226 34 22-72 76-130 144-158zM638 544c-8 66-42 126-92 166-6-28-10-56-18-86-6-26-16-52-24-76 42-4 90-6 134-4zM388 512c-86 36-158 92-208 156-32-44-52-98-52-156v-14c98-2 190-16 268-42 8 16 14 32 20 48-12 2-20 4-28 8zM438 556c12 32 22 64 30 98 8 30 14 62 20 92-32 14-68 22-104 22-62 0-118-22-162-58 44-60 106-108 180-142 8-4 22-8 36-12z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-dribbble" + ], + "defaultCode": 61997, + "grid": 0 + }, + "properties": { + "id": 633, + "order": 634, + "ligatures": "", + "prevSize": 32, + "code": 61997, + "name": "ion-social-dribbble" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 632 + }, + { + "icon": { + "paths": [ + "M226 154l158 132-228 142-156-126zM54 306l104 84 172-106-106-92zM612 426l156 126-156 102v78l-228 138-228-136v-78l-156-104 156-126 228 142-158 132-38-24v40l196 118 196-118v-40l-38 24-158-132zM158 462l-104 88 170 110 106-88zM438 572l106 88 170-112-104-86zM768 302l-156 126-228-142 158-132zM438 286l172 104 104-84-170-112z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-dropbox-outline" + ], + "defaultCode": 61998, + "grid": 0 + }, + "properties": { + "id": 634, + "order": 635, + "ligatures": "", + "prevSize": 32, + "code": 61998, + "name": "ion-social-dropbox-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 633 + }, + { + "icon": { + "paths": [ + "M226 154l158 132-228 142-156-126zM0 552l156-124 228 140-158 132zM384 568l228-140 156 124-226 148zM768 302l-156 126-228-142 158-132zM384 596l160 132 68-44v50l-228 136-228-136v-50l68 44z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-dropbox" + ], + "defaultCode": 61999, + "grid": 0 + }, + "properties": { + "id": 635, + "order": 636, + "ligatures": "", + "prevSize": 32, + "code": 61999, + "name": "ion-social-dropbox" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 634 + }, + { + "icon": { + "paths": [ + "M428 128c-106 0-182 18-230 54-44 32-66 80-66 148v56h-100v32h100v160h-100v32h100v84c0 68 22 116 66 148 48 36 124 54 230 54 62 0 118-4 176-16l-10-70c-60 8-110 14-160 14-72 0-118-12-148-38-38-32-42-80-42-120v-56h238l6-32h-244v-160h268l4-32h-272v-38c0-32 4-78 42-110 32-26 78-38 148-38 48 0 102 6 160 14l10-70c-58-12-114-16-176-16zM428 96v0c70 0 136 6 212 24l-18 130c-74-12-136-18-188-18-128 0-158 44-158 116v6h278l-16 96h-262v96h248l-14 96h-234v24c0 88 30 126 158 126 52 0 114-6 188-18l18 130c-76 18-142 24-212 24-230 0-328-82-328-234v-52h-100v-96h100v-96h-100v-96h100v-24c0-152 98-234 328-234z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-euro-outline" + ], + "defaultCode": 62688, + "grid": 0 + }, + "properties": { + "id": 636, + "order": 637, + "ligatures": "", + "prevSize": 32, + "code": 62688, + "name": "ion-social-euro-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 635 + }, + { + "icon": { + "paths": [ + "M276 544h248l-14 96h-234v26c0 88 30 126 158 126 52 0 112-6 186-18l20 130c-76 18-142 24-212 24-230 0-328-82-328-234v-54h-100v-96h100v-96h-100v-96h100v-22c0-152 98-234 328-234 70 0 136 6 212 24l-20 130c-74-12-134-18-186-18-128 0-158 44-158 116v4h276l-14 96h-262v96z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-euro" + ], + "defaultCode": 62689, + "grid": 0 + }, + "properties": { + "id": 637, + "order": 638, + "ligatures": "", + "prevSize": 32, + "code": 62689, + "name": "ion-social-euro" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 636 + }, + { + "icon": { + "paths": [ + "M256 384h128l-16 128h-112v384h-166v-384h-90v-128h90v-86c0-108 46-170 182-170h112v128h-68c-54 0-60 18-60 52v76zM340 480l8-64h-124v-108c0-20 2-42 18-60 20-22 50-24 74-24h36v-64h-80c-56 0-98 12-120 36-20 22-30 54-30 102v118h-90v64h90v384h102v-384h116z" + ], + "width": 384, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-facebook-outline" + ], + "defaultCode": 62000, + "grid": 0 + }, + "properties": { + "id": 638, + "order": 639, + "ligatures": "", + "prevSize": 32, + "code": 62000, + "name": "ion-social-facebook-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 637 + }, + { + "icon": { + "paths": [ + "M256 384h128l-16 128h-112v384h-166v-384h-90v-128h90v-86c0-108 46-170 182-170h112v128h-68c-54 0-60 18-60 52v76z" + ], + "width": 384, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-facebook" + ], + "defaultCode": 62001, + "grid": 0 + }, + "properties": { + "id": 639, + "order": 640, + "ligatures": "", + "prevSize": 32, + "code": 62001, + "name": "ion-social-facebook" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 638 + }, + { + "icon": { + "paths": [ + "M604 328c-24 120-50 262-54 276zM562 64c70 0 90 40 74 114-6 32-20 88-32 150l-54 274c-6 26-16 70-78 70h-144c-6 0-6 0-12 6-4 4-230 266-230 266-18 20-46 16-56 12s-30-16-30-52v-760s20-80 86-80h476zM560 192c12-62 12-64-48-64h-390c-58 0-58 6-58 56v594c0 76 2 76 6 76s20-16 58-62c0 0 156-178 158-180 4-4 6-4 12-4h124c52 0 56-12 66-62 8-42 72-354 72-354zM604 328c12-62 26-118 32-150zM466 192c10 0 18 10 16 22l-16 88c-2 8-12 18-22 18h-150c-16 0-16 10-16 26v12c0 16 0 26 16 26h128s22 12 20 24-22 102-24 108-8 18-22 18h-124c-18 0-22 2-34 16l-108 126c-2 2-2 2-2 0v-462c0-10 10-22 22-22h316z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-foursquare-outline" + ], + "defaultCode": 62284, + "grid": 0 + }, + "properties": { + "id": 640, + "order": 641, + "ligatures": "", + "prevSize": 32, + "code": 62284, + "name": "ion-social-foursquare-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 639 + }, + { + "icon": { + "paths": [ + "M562 64c70 0 90 40 74 114-20 98-80 404-86 426-6 26-16 68-78 68h-144c-6 0-6 0-12 6-4 4-230 266-230 266-18 20-46 16-56 12s-30-16-30-52v-760s20-80 86-80h476zM550 604c6-22 66-328 86-426zM534 194c4-18-10-32-24-32h-382c-18 0-30 16-30 30v592c0 2 2 2 4 0 0 0 140-168 156-188s22-22 46-22h128c18 0 28-16 30-24s16-86 20-102-12-32-26-32h-164c-20 0-36-16-36-36v-26c0-20 16-34 36-34h192s28-12 30-24z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-foursquare" + ], + "defaultCode": 62285, + "grid": 0 + }, + "properties": { + "id": 641, + "order": 642, + "ligatures": "", + "prevSize": 32, + "code": 62285, + "name": "ion-social-foursquare" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 640 + }, + { + "icon": { + "paths": [ + "M1006 230c38 74 16 162-40 216s-120 66-120 66c4 64 32 118-82 204-86 64 4 180 4 180 20 28 46 38 64 64h-544s30-28-14-64c0 0-40-34-36-58s12-26 18-30 0-14 0-14l-38-38s-26 26-88 26c-76 0-130-78-130-78h92s-12 16-14 26c-2 8 2 10 2 10s22 12 44 12c34 0 66-24 66-24l-48-44-30 8-32-74 78 20-2 30 56 36s18-18 14-54-18-52-18-52-8 0-18 8-12 12-12 12l-20-88s86 38 100 126c6 40-12 70-12 70l34 20s12-10 34-14 46-4 58 16 10 24 8 38 0 18 12 22 12 12 22 16 30 12 42 4 16-22 16-36v-32s-18-16-64-40-108-44-132-80-24-88 0-114c18-20 46-50 52-70 8-28 8-84 8-84s-20-32-16-80c4-60 44-168 192-228 0 0-80 110-40 160 0 0 74-22 154-18 62 4 112 24 146 56s50 46 94 34 56-34 56-66c0-38-32-102-32-102s72 14 116 102zM390 406c28-8 42 22 42 22 28-50 60-120 44-128s-128 50-132 176c0 0 12-62 46-70zM464 436c10-14 68-16 74 34 8 70-48 114-48 114s14 4 46-4c34-8 86-58 86-140s-42-132-82-124-76 120-76 120z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-freebsd-devil" + ], + "defaultCode": 62148, + "grid": 0 + }, + "properties": { + "id": 642, + "order": 643, + "ligatures": "", + "prevSize": 32, + "code": 62148, + "name": "ion-social-freebsd-devil" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 641 + }, + { + "icon": { + "paths": [ + "M448 64c248 0 448 206 448 460 0 202-128 376-306 436h-8c-16 0-24-14-24-24 0-16 2-62 2-124 0-42-16-72-32-86 100-12 206-50 206-226 0-50-18-92-46-124 4-12 20-58-4-122h-10c-16 0-54 6-114 48-36-10-74-16-112-16s-76 6-112 16c-60-42-98-48-114-48h-10c-24 64-8 110-4 122-28 32-46 74-46 124 0 176 104 214 204 226-12 12-24 32-28 62-12 6-32 12-52 12-26 0-56-10-78-50 0 0-26-44-70-48v0c-4 0-42 0-2 28 0 0 30 16 50 68 0 0 20 66 106 66 14 0 28 0 44-4v78c0 10-6 22-22 22h-8c-178-60-306-232-306-436 0-254 200-460 448-460zM292 896c-30 0-56-8-76-18 28 20 56 34 88 46v-28h-12zM314 750c-32-8-70-20-104-48 12 12 22 22 26 32 14 24 28 34 50 34 8 0 18-2 24-4 2-4 2-10 4-14zM694 868c34-26 64-56 90-92 52-74 80-160 80-252 0-58-10-116-32-168-20-50-52-96-90-136s-82-68-132-90c-52-22-106-34-162-34s-110 12-162 34c-50 22-94 50-132 90s-70 84-90 136c-22 52-32 110-32 168 0 92 28 178 80 252 20 28 44 54 70 76-14-16-22-32-26-44-14-36-30-48-34-50h-4v-2c-10-6-40-26-30-56 6-18 24-30 50-30h2c26 2 48 12 64 26-42-38-74-96-74-196 0-48 14-94 42-132-6-26-12-68 10-124l6-16 14-4c4 0 10-2 20-2 24 0 62 6 120 44 34-8 70-12 106-12v0 0c36 0 72 4 106 12 58-38 96-44 120-44 10 0 16 2 20 2l14 4 6 14c22 54 16 100 10 126 28 38 42 82 42 132 0 184-110 234-184 250 6 16 10 36 10 60v114c36-14 70-32 102-56z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-github-outline" + ], + "defaultCode": 62002, + "grid": 0 + }, + "properties": { + "id": 643, + "order": 644, + "ligatures": "", + "prevSize": 32, + "code": 62002, + "name": "ion-social-github-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 642 + }, + { + "icon": { + "paths": [ + "M448 64c248 0 448 206 448 460 0 202-128 376-306 436h-8c-16 0-24-14-24-24 0-16 2-62 2-124 0-42-16-72-32-86 100-12 206-50 206-226 0-50-18-92-46-124 4-12 20-58-4-122h-10c-16 0-54 6-114 48-36-10-74-16-112-16s-76 6-112 16c-60-42-98-48-114-48h-10c-24 64-8 110-4 122-28 32-46 74-46 124 0 176 104 214 204 226-12 12-24 32-28 62-12 6-32 12-52 12-26 0-56-10-78-50 0 0-26-44-70-48v0c-4 0-42 0-2 28 0 0 30 16 50 68 0 0 20 66 106 66 14 0 28 0 44-4v78c0 10-6 22-22 22h-8c-178-60-306-232-306-436 0-254 200-460 448-460z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-github" + ], + "defaultCode": 62003, + "grid": 0 + }, + "properties": { + "id": 644, + "order": 645, + "ligatures": "", + "prevSize": 32, + "code": 62003, + "name": "ion-social-github" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 643 + }, + { + "icon": { + "paths": [ + "M382 164c24 20 74 60 74 136 0 74-42 110-86 144-14 14-30 26-30 48s16 34 28 44l36 28c46 38 86 72 86 142 0 94-94 190-270 190-148 0-220-70-220-144 0-36 20-88 80-124 64-38 150-42 196-46-14-18-32-36-32-68 0-18 4-28 10-40-12 0-22 2-32 2-108 0-170-80-170-158 0-46 22-96 66-134 58-48 126-56 182-56h212l-66 36h-64zM310 612c-8-2-14-2-24-2s-64 2-108 16c-22 8-88 32-88 104s72 124 182 124c98 0 150-48 150-110 0-52-34-78-112-132zM340 420c24-24 26-56 26-74 0-72-44-184-130-184-26 0-56 12-72 32-18 22-22 50-22 76 0 68 40 178 128 178 26 0 54-12 70-28z" + ], + "width": 512, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-google-outline" + ], + "defaultCode": 62286, + "grid": 0 + }, + "properties": { + "id": 645, + "order": 646, + "ligatures": "", + "prevSize": 32, + "code": 62286, + "name": "ion-social-google-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 644 + }, + { + "icon": { + "paths": [ + "M420 552c44 36 90 72 90 146 0 98-96 198-280 198-160 0-230-78-230-154 0-20 6-84 84-130 54-32 122-40 170-44-8-14-16-32-16-54 0-8 0-14 2-20h-8c-38 0-92-8-134-52-30-30-48-72-48-114 0-52 26-106 70-142v0c64-50 140-58 190-58h266l-120 66h-26c22 26 46 62 46 116 0 80-50 118-90 148v2c-12 12-22 20-22 34 0 12 8 20 20 30v0zM170 280c0 26 8 66 28 102 14 24 40 54 82 54 20 0 42-8 56-22 20-20 20-50 20-60 0-36-12-76-30-108-14-26-40-54-80-54-22 0-44 10-58 26-12 14-18 36-18 62zM412 736c0-40-26-62-100-112-6 0-8-2-16-2-12 0-64 4-102 16-32 12-74 32-74 84 0 62 64 102 160 102 82 0 132-34 132-88z" + ], + "width": 576, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-google" + ], + "defaultCode": 62287, + "grid": 0 + }, + "properties": { + "id": 646, + "order": 647, + "ligatures": "", + "prevSize": 32, + "code": 62287, + "name": "ion-social-google" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 645 + }, + { + "icon": { + "paths": [ + "M384 164c24 20 72 60 72 136 0 74-42 110-86 144-14 14-30 26-30 48s16 36 28 44l36 28c46 38 86 72 86 142 0 94-94 190-270 190-148 0-220-70-220-144 0-36 20-88 80-124 64-38 150-42 196-46-14-18-32-36-32-68 0-18 6-28 10-40-12 0-22 2-32 2-108 0-170-80-170-158 0-46 20-96 64-134 58-48 128-56 184-56h212l-66 36h-62zM310 612c-8 0-14-2-24-2s-64 2-108 16c-22 8-88 32-88 104s72 124 182 124c98 0 150-48 150-110 0-52-34-78-112-132zM340 420c24-24 26-56 26-74 0-72-44-184-130-184-26 0-56 12-72 32-18 22-22 48-22 74 0 68 40 180 128 180 26 0 54-12 70-28zM896 284v36h-156v162h-36v-162h-160v-36h160v-156h36v156h156z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-googleplus-outline" + ], + "defaultCode": 62004, + "grid": 0 + }, + "properties": { + "id": 647, + "order": 648, + "ligatures": "", + "prevSize": 32, + "code": 62004, + "name": "ion-social-googleplus-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 646 + }, + { + "icon": { + "paths": [ + "M420 552c44 36 90 72 90 146 0 98-94 198-278 198-160 0-232-78-232-154 0-20 6-84 84-130 54-32 122-42 170-46-8-14-16-30-16-52 0-8 0-14 2-20h-8c-38 0-92-8-134-52-30-30-48-72-48-114 0-52 26-106 70-142v0c64-50 138-58 188-58h268l-120 66h-26c22 26 46 62 46 116 0 80-50 118-90 148v2c-12 12-22 20-22 34 0 12 8 20 20 30v0zM170 280c0 26 8 66 28 102 14 24 42 54 82 54 20 0 42-8 56-22 20-20 20-50 20-60 0-36-12-74-30-106-16-26-40-56-80-56-22 0-46 10-58 26-12 14-18 36-18 62zM412 736c0-40-26-62-100-112-6 0-8-2-16-2-12 0-62 4-100 16-32 12-76 32-76 84 0 62 64 102 160 102 82 0 132-34 132-88zM740 284h156v68h-156v162h-68v-162h-160v-68h160v-156h68v156z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-googleplus" + ], + "defaultCode": 62005, + "grid": 0 + }, + "properties": { + "id": 648, + "order": 649, + "ligatures": "", + "prevSize": 32, + "code": 62005, + "name": "ion-social-googleplus" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 647 + }, + { + "icon": { + "paths": [ + "M704 192h-640v640h640v-640zM768 128v0 768h-768v-768h768zM466 318h90l-128 240v144h-80v-144l-132-240h94l80 168z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-hackernews-outline" + ], + "defaultCode": 62006, + "grid": 0 + }, + "properties": { + "id": 649, + "order": 650, + "ligatures": "", + "prevSize": 32, + "code": 62006, + "name": "ion-social-hackernews-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 648 + }, + { + "icon": { + "paths": [ + "M0 128h768v768h-768v-768zM428 558l128-240h-90l-76 168-80-168h-94l132 240v144h80v-144z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-hackernews" + ], + "defaultCode": 62007, + "grid": 0 + }, + "properties": { + "id": 650, + "order": 651, + "ligatures": "", + "prevSize": 32, + "code": 62007, + "name": "ion-social-hackernews" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 649 + }, + { + "icon": { + "paths": [ + "M0 64h768l-70 806-314 90-314-90zM638 822l60-694h-628l60 694 254 72zM168 528l-26-300h482l-8 100h-368l8 102h352l-28 302-196 56-198-56-12-154h96l6 78 108 30 106-30 12-128h-334z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-html5-outline" + ], + "defaultCode": 62690, + "grid": 0 + }, + "properties": { + "id": 651, + "order": 652, + "ligatures": "", + "prevSize": 32, + "code": 62690, + "name": "ion-social-html5-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 650 + }, + { + "icon": { + "paths": [ + "M0 64h768l-70 806-314 90-314-90zM616 328l8-100h-482l26 300h334l-12 128-106 30-108-30-6-78h-96l12 156 198 54 196-56 28-302h-352l-8-102h368z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-html5" + ], + "defaultCode": 62691, + "grid": 0 + }, + "properties": { + "id": 652, + "order": 653, + "ligatures": "", + "prevSize": 32, + "code": 62691, + "name": "ion-social-html5" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 651 + }, + { + "icon": { + "paths": [ + "M768 224v578c0 52-44 94-96 94h-576c-52 0-96-42-96-94v-578c0-52 44-96 96-96h576c52 0 96 44 96 96zM384 352c-88 0-160 72-160 160s72 160 160 160 160-72 160-160-72-160-160-160zM704 320v-96c0-18-14-32-32-32h-96c-18 0-32 14-32 32v96c0 18 14 32 32 32h96c18 0 32-14 32-32zM674 832c18 0 30-14 30-32v-352h-104c6 20 8 42 8 64 0 60-22 116-64 158s-100 66-160 66-116-24-158-66-66-98-66-158c0-22 4-44 10-64h-106v352c0 18 16 32 34 32h576z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-instagram-outline" + ], + "defaultCode": 62288, + "grid": 0 + }, + "properties": { + "id": 653, + "order": 654, + "ligatures": "", + "prevSize": 32, + "code": 62288, + "name": "ion-social-instagram-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 652 + }, + { + "icon": { + "paths": [ + "M224 512c0-106 54-160 160-160s160 54 160 160-54 160-160 160-160-54-160-160zM226 354c-28 28-46 58-56 94h-170v-224c0-26 8-50 28-68s44-28 70-28h576c26 0 48 10 66 28s28 42 28 68v224h-168c-10-36-28-66-56-94-44-44-98-66-160-66s-114 22-158 66zM704 296v-78c0-8-4-14-8-18s-10-8-18-8h-76c-8 0-14 4-18 8s-8 10-8 18v78c0 8 4 14 8 18s10 6 18 6h76c8 0 14-2 18-6s8-10 8-18zM544 670c44-44 64-96 64-158h160v288c0 26-10 48-28 68s-40 28-66 28h-576c-26 0-48-8-68-28s-30-42-30-68v-288h162c0 62 20 114 64 158s96 66 158 66 116-22 160-66z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-instagram" + ], + "defaultCode": 62289, + "grid": 0 + }, + "properties": { + "id": 654, + "order": 655, + "ligatures": "", + "prevSize": 32, + "code": 62289, + "name": "ion-social-instagram" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 653 + }, + { + "icon": { + "paths": [ + "M320 208h-96v392c0 60-12 100-34 128-22 26-52 40-96 40-18 0-36-2-50-4l-8 60c22 4 50 8 74 8 68 0 118-16 152-50 38-36 58-96 58-180v-394zM352 176v0 426c0 194-98 262-242 262-36 0-80-6-110-16l16-124c20 8 48 12 78 12 62 0 98-30 98-136v-424h160zM700 192c-68 0-124 18-164 52-38 30-56 72-56 120 0 40 14 72 42 102 28 28 68 52 122 72 46 16 76 30 96 48 24 22 36 46 36 76 0 32-14 62-40 80-24 18-56 28-96 28-56 0-104-16-140-30l-14 64c36 16 88 28 144 28 76 0 140-18 180-54 36-32 54-76 54-126 0-42-10-72-34-100s-62-54-116-74v0 0c-76-30-144-56-144-126 0-28 14-54 38-72 22-18 52-26 90-26 48 0 86 10 114 22l20-64c-38-12-84-20-132-20zM700 160v0c76 0 130 14 170 32l-38 128c-26-14-70-34-134-34s-96 32-96 66c0 44 38 62 124 96 116 44 170 106 170 204 0 114-84 212-266 212-76 0-144-20-182-42l30-126c40 22 98 42 162 42 68 0 104-30 104-76 0-42-30-66-110-94-110-40-186-104-186-204 0-116 98-204 252-204z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-javascript-outline" + ], + "defaultCode": 62692, + "grid": 0 + }, + "properties": { + "id": 655, + "order": 656, + "ligatures": "", + "prevSize": 32, + "code": 62692, + "name": "ion-social-javascript-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 654 + }, + { + "icon": { + "paths": [ + "M352 176v0 426c0 194-98 262-242 262-36 0-80-6-110-16l16-124c20 8 48 12 78 12 62 0 98-30 98-136v-424h160zM700 160v0c76 0 130 14 170 32l-38 128c-26-14-70-34-134-34s-96 32-96 66c0 44 38 62 124 96 116 44 170 106 170 204 0 114-84 212-266 212-76 0-144-20-182-42l30-126c40 22 98 42 162 42 68 0 104-30 104-76 0-42-30-66-110-94-110-40-186-104-186-204 0-116 98-204 252-204z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-javascript" + ], + "defaultCode": 62693, + "grid": 0 + }, + "properties": { + "id": 656, + "order": 657, + "ligatures": "", + "prevSize": 32, + "code": 62693, + "name": "ion-social-javascript" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 655 + }, + { + "icon": { + "paths": [ + "M238 768v0h-110v-342h110v342zM186 374v0 0c-36 0-58-26-58-58 0-34 24-60 60-60s58 26 58 60c0 32-24 58-60 58zM514 418c72 0 126 48 126 150v200h-110v-188c0-44-16-74-56-74-30 0-48 20-56 40-4 8-4 18-4 28v194h-110v-342h110v48c16-22 42-56 100-56zM706 128c36 0 62 26 62 60v642c0 34-26 66-62 66h-640c-36 0-66-32-66-66v-642c0-34 30-60 66-60h640zM700 832c2 0 4-2 4-4v-632c0-2-2-4-4-4h-632s-4 2-4 4v630s2 6 6 6h630z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-linkedin-outline" + ], + "defaultCode": 62008, + "grid": 0 + }, + "properties": { + "id": 657, + "order": 658, + "ligatures": "", + "prevSize": 32, + "code": 62008, + "name": "ion-social-linkedin-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 656 + }, + { + "icon": { + "paths": [ + "M706 128c36 0 62 26 62 60v642c0 34-26 66-62 66h-640c-36 0-66-32-66-66v-642c0-34 30-60 66-60h640zM238 768v-342h-110v342h110zM186 374c36 0 60-26 60-58 0-34-22-60-58-60s-60 26-60 60c0 32 22 58 58 58v0zM640 768v-200c0-102-54-150-126-150-58 0-84 34-100 56v-48h-110v342h110v-194c0-10 0-20 4-28 8-20 26-40 56-40 40 0 56 30 56 74v188h110z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-linkedin" + ], + "defaultCode": 62009, + "grid": 0 + }, + "properties": { + "id": 658, + "order": 659, + "ligatures": "", + "prevSize": 32, + "code": 62009, + "name": "ion-social-linkedin" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 657 + }, + { + "icon": { + "paths": [ + "M832 192c36 0 64 28 64 64v512c0 36-28 64-64 64h-768c-36 0-64-28-64-64v-512c0-36 28-64 64-64h768zM504 704v0-384h-112l-84 136-84-136h-112v384h112v-192l84 108 84-108v192h112zM672 704v0l140-192h-84v-192h-112v192h-84z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-markdown" + ], + "defaultCode": 62694, + "grid": 0 + }, + "properties": { + "id": 659, + "order": 660, + "ligatures": "", + "prevSize": 32, + "code": 62694, + "name": "ion-social-markdown" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 658 + }, + { + "icon": { + "paths": [ + "M384 960c-12 0-24-4-34-10l-106-64c-16-10-8-12-2-14 22-8 28-10 50-24 2-2 6-2 8 0l78 46c2 2 8 2 10 0l312-184c2-2 4-4 4-8v-374c0-4 0-8-4-10l-312-188c-2-2-6-2-8 0l-310 188c-4 2-6 6-6 10v374c0 4 0 6 4 8l80 48c48 24 76-2 76-30v-366c0-6 4-10 10-10h44c6 0 10 4 10 10v366c0 66-38 104-98 104-18 0-34-2-74-22l-82-48c-20-12-34-36-34-60v-380c0-24 14-48 34-60l316-190c20-12 48-12 68 0l316 190c20 12 34 36 34 60v380c0 24-14 48-34 60l-316 188c-10 6-22 10-34 10v0zM482 704c-130 0-168-62-168-118 0-6 2-10 8-10h42c4 0 10 4 10 8 6 44 32 62 108 62 66 0 94-22 94-58 0-22-6-36-110-46-86-8-142-30-142-102 0-66 56-104 146-104 92 0 152 28 158 102 0 2-2 4-4 6s-4 4-6 4h-40c-4 0-10-4-10-8-8-34-32-46-98-46-72 0-82 24-82 44 0 24 10 32 108 46s144 32 144 102c0 72-58 118-158 118v0 0z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-nodejs" + ], + "defaultCode": 62695, + "grid": 0 + }, + "properties": { + "id": 660, + "order": 661, + "ligatures": "", + "prevSize": 32, + "code": 62695, + "name": "ion-social-nodejs" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 659 + }, + { + "icon": { + "paths": [ + "M292 574c18 0 32 8 44 26s20 40 20 64-8 44-20 62-28 26-44 26c-18 0-34-8-46-26s-18-38-18-62 6-48 18-64c12-18 28-26 46-26zM606 574c18 0 32 8 44 26s18 40 18 64-6 44-18 62-26 26-44 26-36-8-48-26-18-38-18-62 6-48 18-64c12-18 30-26 48-26zM828 344c48 54 68 132 68 192 0 48-2 92-12 130-12 38-26 70-42 94-18 24-38 46-64 64s-48 34-68 42-44 16-72 20c-26 4-48 8-62 8 0 0-56 2-128 2s-128-2-128-2c-14 0-36-4-62-8-28-4-52-12-72-20s-44-24-68-42c-26-18-46-40-64-64-16-24-30-56-42-94-10-38-12-82-12-130 0-62 20-140 68-192 0 0-4-28 0-78s14-96 32-138c60 6 134 40 224 102 30-8 72-12 124-12 56 0 96 4 124 12 40-28 78-48 116-66 38-16 66-26 82-30s26-6 26-6c18 42 28 88 32 138s0 78 0 78v0zM696 812c56-26 84-80 84-162 0-48-16-86-52-118-18-18-40-26-64-30s-62-2-112 2-80 8-104 8-50-4-84-6-60-6-78-6c-20 0-40-2-62 4s-42 14-56 28c-34 30-50 70-50 118 0 82 26 136 82 162 54 26 138 36 246 36h4c108 0 190-10 246-36z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-octocat" + ], + "defaultCode": 62696, + "grid": 0 + }, + "properties": { + "id": 661, + "order": 662, + "ligatures": "", + "prevSize": 32, + "code": 62696, + "name": "ion-social-octocat" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 660 + }, + { + "icon": { + "paths": [ + "M448 64c248 0 448 200 448 448s-200 448-448 448-448-200-448-448 200-448 448-448zM720 784c72-72 112-170 112-272s-40-200-112-272-170-112-272-112-200 40-272 112-112 170-112 272 40 200 112 272c28 28 62 50 96 68 2-12 4-20 6-32 8-36 58-244 58-244s-16-30-16-72c0-66 40-116 88-116 40 0 60 32 60 68 0 40-26 102-40 158-12 48 24 86 70 86 84 0 142-108 142-238 0-98-66-170-186-170-136 0-220 100-220 214 0 40 12 66 30 88 8 10 10 12 6 24-2 8-8 28-10 36-4 12-12 16-22 12-62-26-92-96-92-172 0-128 108-280 320-280 172 0 284 126 284 258 0 176-98 306-242 306-48 0-94-26-110-56 0 0-24 104-30 124-4 12-8 26-14 38 30 8 62 12 94 12 102 0 200-40 272-112z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-pinterest-outline" + ], + "defaultCode": 62128, + "grid": 0 + }, + "properties": { + "id": 662, + "order": 663, + "ligatures": "", + "prevSize": 32, + "code": 62128, + "name": "ion-social-pinterest-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 661 + }, + { + "icon": { + "paths": [ + "M448 64c248 0 448 200 448 448s-200 448-448 448c-44 0-88-6-128-18 16-28 36-62 46-96 6-20 32-124 32-124 16 30 60 56 108 56 144 0 242-130 242-306 0-132-112-258-284-258-212 0-320 152-320 280 0 78 30 146 92 172 10 4 20 0 24-12 2-8 6-28 8-36 4-12 2-14-6-24-18-22-30-48-30-88 0-114 84-214 220-214 120 0 188 72 188 170 0 130-58 238-142 238-48 0-84-38-72-86 14-56 40-118 40-158 0-36-20-68-60-68-48 0-86 50-86 116 0 42 14 72 14 72s-50 208-58 244c-8 34-10 70-8 102-158-70-268-226-268-410 0-248 200-448 448-448z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-pinterest" + ], + "defaultCode": 62129, + "grid": 0 + }, + "properties": { + "id": 663, + "order": 664, + "ligatures": "", + "prevSize": 32, + "code": 62129, + "name": "ion-social-pinterest" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 662 + }, + { + "icon": { + "paths": [ + "M258 498c-58 10-98 60-98 114v92h-30c-58 0-108-58-124-138-4-18-6-34-6-54v-2c0-106 58-190 130-190h254v-32h-192v-58c0-52 14-80 92-94 26-4 58-8 90-8s78 2 110 8c50 8 92 44 92 94v176c0 42-28 76-66 86-8 2-16 4-26 4h-202c-8 0-16 0-24 2zM280 254c20 0 34-14 34-34s-14-36-34-36-36 16-36 36 16 34 36 34zM760 446c6 20 8 42 8 66 0 32-6 60-14 86-22 62-66 106-116 106h-254v32h192v52c0 52-46 80-92 94-70 20-136 18-194 0-50-14-98-44-98-94v-174c0-42 28-72 66-82 8-2 16-4 26-4h208c6 0 12-2 18-2 54-8 98-56 98-124v-82h30c56 0 104 52 122 126zM488 766c-20 0-36 14-36 34s16 36 36 36 34-16 34-36-14-34-34-34z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-python" + ], + "defaultCode": 62697, + "grid": 0 + }, + "properties": { + "id": 664, + "order": 665, + "ligatures": "", + "prevSize": 32, + "code": 62697, + "name": "ion-social-python" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 663 + }, + { + "icon": { + "paths": [ + "M518 576c0-42 22-62 64-62s64 20 64 62-22 64-64 64-64-22-64-64zM254 576c0-42 22-62 64-62s64 20 64 62-22 64-64 64-64-22-64-64zM898 502c0 40-18 72-54 90 2 10 2 18 2 28 0 76-38 142-116 196s-170 80-280 80-204-26-282-80-116-118-116-194c0-10 0-20 2-30-36-18-54-48-54-90 0-28 10-50 30-70s42-30 70-30c26 0 48 8 66 26 72-50 158-78 258-82h14l58-196 172 34c16-38 42-56 82-56 24 0 44 8 62 26s26 40 26 64-8 46-26 64-38 26-62 26-46-8-64-26-26-38-26-62l-138-28-48 154c100 4 188 32 258 82 20-18 42-26 68-26 18 0 32 6 48 14s28 20 36 36 14 32 14 50zM750 164c-8 0-16 2-22 4s-12 8-16 12-10 12-12 18-4 12-4 20c0 16 6 28 16 38s24 16 38 16c10 0 18-2 26-6s16-12 20-20 8-18 8-28c0-16-6-28-16-38s-24-16-38-16zM36 502c0 22 10 40 28 54 14-38 38-74 74-106-12-8-24-12-38-12-6 0-14 0-20 2s-12 6-18 10-10 8-14 14-8 12-10 18-2 12-2 20zM710 786c68-46 100-102 100-166v-18c-2-12-6-24-10-36-12-32-30-60-60-86-10-8-20-18-30-24v0c-72-50-158-74-260-74s-190 24-262 74v0c-10 6-20 16-30 24-30 26-48 54-60 86-4 12-8 24-10 36v18c0 64 32 120 100 166 72 50 160 74 262 74s188-24 260-74zM834 556c18-12 28-32 28-54 0-18-6-34-18-46s-26-18-44-18c-14 0-28 4-40 12 36 32 60 68 74 106zM578 716l26 24c-40 40-90 60-154 60s-116-20-156-60l26-24c32 32 76 48 130 48s96-16 128-48z" + ], + "width": 898, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-reddit-outline" + ], + "defaultCode": 62010, + "grid": 0 + }, + "properties": { + "id": 665, + "order": 666, + "ligatures": "", + "prevSize": 32, + "code": 62010, + "name": "ion-social-reddit-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 664 + }, + { + "icon": { + "paths": [ + "M898 502c0 40-22 74-54 90 2 10 2 18 2 28 0 152-178 276-398 276s-396-122-396-274c0-10 0-20 2-30-32-16-54-50-54-90 0-56 46-100 100-100 26 0 48 10 66 26 66-46 158-78 258-82h4l62-206 180 36c16-28 44-48 78-48v0h2c50 0 88 40 88 90s-38 90-88 90h-2c-46 0-84-34-88-80l-134-28-44 148c98 6 186 34 250 80 18-16 42-26 68-26 54 0 98 44 98 100zM68 542c10-30 30-58 58-82-8-6-18-10-30-10-28 0-50 22-50 50 0 18 8 34 22 42zM716 218c0 18 14 34 32 34s34-16 34-34-16-34-34-34-32 16-32 34zM254 576c0 36 28 64 64 64s64-28 64-64-28-62-64-62-64 26-64 62zM448 800c96 0 154-58 156-60l-26-24s-50 48-130 48c-82 0-128-48-128-48l-26 24c2 2 58 60 154 60zM582 640c36 0 64-28 64-64s-28-62-64-62-64 26-64 62 28 64 64 64zM830 544c14-10 22-26 22-44 0-28-22-50-50-50-12 0-22 4-30 10 28 24 48 54 58 84z" + ], + "width": 898, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-reddit" + ], + "defaultCode": 62011, + "grid": 0 + }, + "properties": { + "id": 666, + "order": 667, + "ligatures": "", + "prevSize": 32, + "code": 62011, + "name": "ion-social-reddit" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 665 + }, + { + "icon": { + "paths": [ + "M112 672c62 0 112 50 112 112s-50 112-112 112-112-50-112-112 50-112 112-112zM112 864c44 0 80-36 80-80s-36-80-80-80-80 36-80 80 36 80 80 80zM0 384c280 0 512 232 512 512h-160c0-96-28-188-96-256s-160-96-256-96v-160zM480 864c-4-52-16-104-38-154-24-56-60-108-104-152s-96-80-152-104c-50-20-102-32-154-36v94c100 6 184 44 246 106s100 146 106 246h96zM0 128c424 0 768 344 768 768h-160c0-342-266-608-608-608v-160zM454 440c112 112 178 262 186 424h96c-16-380-324-688-704-704v96c162 8 310 72 422 184z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-rss-outline" + ], + "defaultCode": 62012, + "grid": 0 + }, + "properties": { + "id": 667, + "order": 668, + "ligatures": "", + "prevSize": 32, + "code": 62012, + "name": "ion-social-rss-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 666 + }, + { + "icon": { + "paths": [ + "M112 672c62 0 112 50 112 112s-50 112-112 112-112-50-112-112 50-112 112-112zM0 384c280 0 512 232 512 512h-160c0-96-28-188-96-256s-160-96-256-96v-160zM0 128c424 0 768 344 768 768h-160c0-342-266-608-608-608v-160z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-rss" + ], + "defaultCode": 62013, + "grid": 0 + }, + "properties": { + "id": 668, + "order": 669, + "ligatures": "", + "prevSize": 32, + "code": 62013, + "name": "ion-social-rss" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 667 + }, + { + "icon": { + "paths": [ + "M1024 658v16c-2 18-14 34-30 44s-24 8-26 6 2-6 8-10c26-16 34-40 20-66-10-20-30-32-52-40-48-16-96-14-144 0 8 24 14 46-4 68-20 24-46 38-78 44-14 4-28-4-30-18-6-38 34-72 60-94-14-22-22-48-28-74-30 34-62 80-52 122 6 28-2 54-28 72s-60 28-92 22c-8-2-12-10-10-16 4-28 50-64 70-86 4-4 6-8 2-14-12-24-20-46-28-72-26 58-60 160-114 196-18 12-34 8-42-10-6-16-4-40-2-58-12 26-22 54-40 76-14 16-48 14-60-2-32-42-26-100-10-146l-58 30c14 32 16 64 8 98-10 38-34 70-70 92-38 24-128 48-154-8-14-32-8-60 12-88 34-48 96-74 148-100-64-46-160-84-192-160-30-70 34-136 86-178 118-96 332-190 488-118 30 14 72 48 62 104-8 48-26 78-56 108-64 64-304 154-352 30-2-2-2-8 2-8 4 2 40 30 86 32 34 2 72-6 104-16 66-22 142-66 160-134 8-26-4-56-30-68-98-48-232 8-318 52-66 34-168 90-164 174 2 74 112 120 162 164 30-14 84-30 104-54 22-26 52-50 88-52 16 0 28 6 32 20 4 12 2 22 0 38 10-8 22-8 30 2 24 28-44 100-20 132 28-28 42-84 60-118 8-16 34-102 52-106 14-4 36-8 50 0 4 2 6 6 4 10-14 38-14 66 6 104 28-40 58-86 68-134 2-4 6-6 10-8 14-4 36-6 50 0 6 2 6 4 4 10-14 44-12 76 12 116 62-22 138-30 194 10-6-4-14-10 0 0 10 8 6 4 0 0 24 16 38 36 42 64zM226 708v0c2-14-2-26-6-40-48 16-132 70-128 124 2 20 16 26 34 24s38-14 54-26c28-22 44-48 46-82zM432 564c2-6-4-10-10-8-58 16-86 114-66 162 2 6 8 6 12 2 34-32 56-112 64-156zM572 728c16 6 54-34 52-54-16 18-36 36-52 54zM734 692c22-12 32-38 24-60-16 12-42 38-40 62 0 4 12 0 16-2z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-sass" + ], + "defaultCode": 62698, + "grid": 0 + }, + "properties": { + "id": 669, + "order": 670, + "ligatures": "", + "prevSize": 32, + "code": 62698, + "name": "ion-social-sass" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 668 + }, + { + "icon": { + "paths": [ + "M212 192c-82 0-148 66-148 146 0 26 8 50 20 72l12 22-4 24c-4 20-6 40-6 60 0 80 32 154 88 210s134 88 214 88c18 0 38-2 56-6l22-4 18 10c22 12 48 18 72 18 82 0 148-66 148-146 0-22-6-44-16-64l-10-20 6-22c4-20 6-42 6-64 0-80-32-154-88-210s-134-86-214-86c-18 0-36 0-52 4l-24 4-20-14c-24-14-52-22-80-22zM212 128v0c42 0 80 12 112 32 20-4 42-4 64-4 202 0 366 160 366 360 0 26-2 54-8 78 14 28 22 58 22 92 0 116-94 210-212 210-36 0-70-8-100-24-22 4-44 6-68 6-202 0-366-162-366-362 0-24 4-48 8-72-18-32-30-68-30-106 0-116 94-210 212-210zM576 688c-16 24-42 42-74 56s-72 20-116 20c-52 0-96-10-130-28-24-14-44-30-60-52s-24-44-24-66c0-14 6-24 16-34s22-14 38-14c12 0 24 4 32 12s14 16 20 30 14 26 22 36 16 18 30 24 32 10 54 10c30 0 56-8 74-20s26-26 26-44c0-14-4-26-14-34-10-10-22-18-38-22-16-6-40-10-68-16-38-8-70-18-96-28-26-12-48-26-64-46s-22-44-22-72 8-50 24-72c16-20 40-38 72-50 30-12 68-16 108-16 32 0 60 2 84 10s46 18 62 30 28 26 36 40 10 28 10 42c0 12-4 24-14 34s-22 16-38 16c-14 0-24-4-32-10-6-6-14-14-22-28-10-16-20-30-32-40s-34-16-62-16c-26 0-46 6-62 16s-24 22-24 36c0 8 4 14 8 20 6 6 12 12 22 16s20 10 30 12 26 6 50 12c30 6 56 12 80 20s46 16 64 28 30 26 40 44 16 40 16 64c0 30-10 56-26 80z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-skype-outline" + ], + "defaultCode": 62014, + "grid": 0 + }, + "properties": { + "id": 670, + "order": 671, + "ligatures": "", + "prevSize": 32, + "code": 62014, + "name": "ion-social-skype-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 669 + }, + { + "icon": { + "paths": [ + "M746 594c14 28 22 58 22 92 0 116-94 210-212 210-36 0-70-8-100-24-22 4-44 6-68 6-202 0-366-162-366-362 0-24 4-48 8-72-18-32-30-68-30-106 0-116 94-210 212-210 42 0 82 12 114 32 20-4 40-4 62-4 202 0 366 160 366 360 0 26-2 54-8 78zM576 688c18-24 24-50 24-80 0-24-4-46-14-64s-24-32-42-44-38-20-62-28-52-14-82-20c-24-6-40-10-50-12s-20-8-30-12-14-10-20-16c-4-6-8-12-8-20 0-14 6-26 22-36s38-14 64-14c28 0 50 4 62 14s22 24 32 40c8 14 16 22 22 28 8 6 18 10 32 10 16 0 26-6 36-16s16-22 16-34c0-14-4-28-12-42s-20-28-36-40-36-22-60-30-54-10-86-10c-40 0-76 4-106 16-32 12-56 30-72 50-16 22-24 44-24 72s6 52 22 72 38 34 64 46c26 10 58 20 96 28 28 6 52 10 68 16 16 4 28 12 38 22 10 8 14 20 14 34 0 18-8 34-26 46s-44 18-74 18c-22 0-40-4-54-10s-22-12-30-22-16-24-22-38-12-22-20-30-20-12-32-12c-16 0-28 4-38 14s-16 20-16 34c0 22 8 44 24 66s36 38 60 52c34 18 78 28 130 28 44 0 84-6 116-20s58-32 74-56z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-skype" + ], + "defaultCode": 62015, + "grid": 0 + }, + "properties": { + "id": 671, + "order": 672, + "ligatures": "", + "prevSize": 32, + "code": 62015, + "name": "ion-social-skype" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 670 + }, + { + "icon": { + "paths": [ + "M480 96v0 0c-142 0-256 108-236 256 4 30 6 64 8 90 0 0-4 10-24 10-12 0-30-4-56-14-4-2-8-2-12-2-16 0-26 12-28 24 0 10 8 22 16 26 28 14 94 20 94 66s-46 94-82 128-128 42-128 42 0 42 64 58 64 10 66 26c4 30 2 44 22 44 4 0 8-2 12-2 16-2 40-6 64-6 22 0 46 4 68 18 46 30 82 68 152 68s106-38 152-68c22-14 48-18 70-18 24 0 46 4 62 6 4 0 8 2 12 2 20 0 18-14 22-44 2-16 2-10 66-26s64-58 64-58-92-8-128-42-82-82-82-128 66-52 94-66c8-4 18-16 18-26-2-12-12-24-28-24-4 0-10 0-14 2-26 10-42 12-54 12-20 0-26-8-26-8 2-26 4-60 8-90 20-148-94-256-236-256zM480 64v0c82 0 160 32 210 90 48 56 68 126 58 202-2 22-4 44-6 62 8-2 20-4 36-10 8-2 16-4 24-4 32 0 58 24 60 54 2 26-18 50-36 58-8 4-18 6-28 10-14 4-28 10-38 16-8 6-10 8-10 10 0 32 40 74 72 104 22 20 78 32 108 34l30 2v28c0 4 0 22-12 42-10 16-32 38-76 48-12 2-22 6-30 8-4 2-10 2-14 2v2c-2 14-2 26-8 36-4 10-18 24-44 24-4 0-12 0-18-2-4 0-6-2-10-2-14-2-30-4-46-4-20 0-38 4-52 12-8 6-18 14-28 20-36 26-76 54-142 54s-106-28-142-54c-10-6-18-14-28-20-14-8-30-12-50-12-16 0-34 2-48 4-4 0-6 2-10 2-6 2-14 2-18 2-26 0-40-14-44-24-6-10-6-22-8-36v-2c-4 0-8 0-12-2-8-2-20-6-32-8-44-10-66-32-76-48-12-20-12-36-12-40v-30l30-2c32-2 88-14 108-34 58-54 72-86 72-104 0-2 0-4-8-10-10-6-26-12-40-16-10-4-20-6-28-10-18-8-36-32-34-58 2-30 28-54 60-54 8 0 16 0 24 4 16 6 26 8 34 10-2-18-4-38-6-60-10-76 10-148 58-204 50-58 128-90 210-90v0zM480 458c-42 0-82-16-112-46-6-6-6-18 0-24s18-6 24 0c24 24 54 38 88 38 32 0 64-14 88-38 6-6 18-6 24 0s6 18 0 24c-30 30-70 46-112 46zM352 304c0-32 10-48 32-48s32 16 32 48-10 48-32 48-32-16-32-48zM544 304c0-32 10-48 32-48s32 16 32 48-10 48-32 48-32-16-32-48z" + ], + "width": 960, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-snapchat-outline" + ], + "defaultCode": 62699, + "grid": 0 + }, + "properties": { + "id": 672, + "order": 673, + "ligatures": "", + "prevSize": 32, + "code": 62699, + "name": "ion-social-snapchat-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 671 + }, + { + "icon": { + "paths": [ + "M960 720c0 4 0 22-12 42-10 16-32 38-76 48-12 2-22 6-30 8-4 2-10 2-14 2v2c-2 14-2 26-8 36-4 10-18 24-44 24-4 0-12 0-18-2-4 0-6-2-10-2-14-2-30-4-46-4-20 0-38 4-52 12-8 6-18 14-28 20-36 26-76 54-142 54s-106-28-142-54c-10-6-18-14-28-20-14-8-30-12-50-12-16 0-34 2-48 4-4 0-6 2-10 2-6 2-14 2-18 2-26 0-40-14-44-24-6-10-6-22-8-36v-2c-4 0-8 0-12-2-8-2-20-6-32-8-44-10-66-32-76-48-12-20-12-36-12-40v-30l30-2c32-2 88-14 108-34 58-54 72-86 72-104 0-2 0-4-8-10-10-6-26-12-40-16-10-4-20-6-28-10-18-8-36-32-34-58 2-30 28-54 60-54 8 0 16 0 24 4 16 6 26 8 34 10-2-18-4-38-6-60-10-76 10-148 58-204 50-58 128-90 210-90v0c82 0 160 32 210 90 48 56 68 126 58 202-2 22-4 44-6 62 8-2 20-4 36-10 8-2 16-4 24-4 32 0 58 24 60 54 2 26-18 50-36 58-8 4-18 6-28 10-14 4-28 10-38 16-8 6-10 8-10 10 0 32 40 74 72 104 22 20 78 32 108 34l30 2v28zM384 256c-18 0-32 22-32 48s14 48 32 48 32-22 32-48-14-48-32-48zM592 412c6-6 6-18 0-24s-18-6-24 0c-24 24-56 38-88 38-34 0-64-14-88-38-6-6-18-6-24 0s-6 18 0 24c30 30 70 46 112 46s82-16 112-46zM576 352c18 0 32-22 32-48s-14-48-32-48-32 22-32 48 14 48 32 48z" + ], + "width": 960, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-snapchat" + ], + "defaultCode": 62700, + "grid": 0 + }, + "properties": { + "id": 673, + "order": 674, + "ligatures": "", + "prevSize": 32, + "code": 62700, + "name": "ion-social-snapchat" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 672 + }, + { + "icon": { + "paths": [ + "M386 792c42 0 84-12 126-40v130c-36 16-68 30-96 36s-56 10-90 10c-38 0-70-4-100-14-28-10-56-24-76-42s-34-36-42-56-12-50-12-88v-280h-96v-116c32-10 60-28 84-48s38-42 52-70 22-74 28-118h124v224h192v128h-192v202c0 48 2 80 8 94 4 14 14 24 28 32 18 12 38 16 62 16zM480 862v-58c-30 12-62 20-94 20-30 0-56-6-80-20-20-12-34-30-42-50-4-12-8-34-8-104v-234h192v-64h-192v-224h-64c-4 32-14 72-28 100-16 32-34 58-60 80-22 18-46 34-72 46v62h96v312c0 42 4 64 8 76 6 16 20 30 36 44 18 16 38 28 62 36 26 8 58 12 92 12 32 0 56-4 82-10 22-4 46-12 72-24z" + ], + "width": 512, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-tumblr-outline" + ], + "defaultCode": 62016, + "grid": 0 + }, + "properties": { + "id": 674, + "order": 675, + "ligatures": "", + "prevSize": 32, + "code": 62016, + "name": "ion-social-tumblr-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 673 + }, + { + "icon": { + "paths": [ + "M386 792c42 0 84-12 126-40v130c-36 16-68 30-96 36s-56 10-90 10c-38 0-70-4-100-14-28-10-56-24-76-42s-34-36-42-56-12-50-12-88v-280h-96v-116c32-10 60-28 84-48s38-42 52-70 22-74 28-118h124v224h192v128h-192v202c0 48 2 80 8 94 4 14 14 24 28 32 18 12 38 16 62 16z" + ], + "width": 512, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-tumblr" + ], + "defaultCode": 62017, + "grid": 0 + }, + "properties": { + "id": 675, + "order": 676, + "ligatures": "", + "prevSize": 32, + "code": 62017, + "name": "ion-social-tumblr" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 674 + }, + { + "icon": { + "paths": [ + "M378 202c4-4-2 2 0 0 4-4 8-8 12-10-6 4-10 8-14 16 0-2 0-4 2-6zM722 792c14 8 46 22 42 44-4 20-34 30-48 38-30 16-56 28-82 50-18 16-34 30-58 34-22 4-50 2-66-16-10-10-14-22-30-24-50-10-108-8-158 0-26 4-42 22-64 34-20 10-40 10-60 2-26-10-54-20-82-26s-58-10-86-18c-62-16-10-60-22-100-6-24-20-58 16-60 18-2 54 2 62-22 4-14-4-30 4-44s-2-34 2-50c8-36 38-64 50-98 10-28 16-50 36-74 18-22 44-44 58-68 20-36 18-70 16-110-2-34-2-66-4-100 0-66 40-120 116-120h28c76 0 126 64 128 138 0 38-10 76 10 134 30 54 72 96 104 146 20 32 32 62 40 98 6 28 18 62 14 90-2 12-4 18-8 22 6 2 14 4 18 10 6 8 4 22 0 52-2 16 10 30 24 38zM274 902c4-40-30-78-50-112-20-32-42-86-78-104-16-8-38-10-46 10-4 14 0 38-4 44-8 18-28 20-46 22-12 0-34 0-34 16 2 20 20 40 14 60-4 14-16 24-16 38 0 28 76 30 94 34 38 8 74 28 114 32 24 2 50-14 52-40zM506 772c-4-20 4 20 0 0s-10-56 2-70c8-10 20-12 34-10 0-8 2-18 6-24 16-26 58-16 78 0l-2-4c-6-8-16-18-26-20 0 0 8-24 4-68-8-80-66-124-66-124 54 60 54 116 54 144 0 12-2 36-8 48-8 2-14 4-22 8-20 10-16-4-16-20 0-36-4-72-14-108-6-18-14-34-26-48-8-10-8-18-10-30-6-24-18-44-32-64-14-18-14-34-10-56 2-14 4-28-12-34-12-4-52-10-54-28-2-12-2-32 10-40 32-28 60 22 34 48-6 6 14 8 16 8 8-2 8-14 10-20 2-8 2-18 2-26 0-34-36-64-68-42-12 8-18 22-20 34 0 4-2 40 0 40-8 0-14-10-22-10-6 0-14 0-20 2 0 0 4-28-4-44-8-18-36-32-48-8s-6 50 0 62 8 12 8 12c4-2 10-8 10-8s-12-6-14-22c-2-18 6-28 14-30s20 4 24 16 0 26 0 26c-14 12-60 36-44 56 28 36 66 30 104 18 16-6 36-10 48-24 6-6 22-4 16 8-4 10-36 14-44 18-18 8-36 16-56 20-12 2-26 10-56-18 14 12 16 32 34 40 26 12 66-18 88-30 2-2 32-10 28 0-2 8-22 14-30 18-22 12-46 42-72 44-16 2-42-32-50-44-2-2-10-18-12-8-2 16 4 28-6 42-12 18-22 36-26 58-2 12 0 22-6 32-22 30-34 66-38 102 0 8 6 86-10 82-36-10-34-66-28-94-6 24-16 60 4 88 24 30 198 110 106 160 14 28 28 50 24 82 16-14 4-40-2-56 0 0 34 24 76 20 34-4 64-14 92-32 12-8 22-18 32-28 2-4 8-12 12-14l2 22c4 34-24 54-20 68 8-16 22-28 26-48 6-24 0-48-4-72zM310 250v0 6c4 0 4-10 2-16-2-8-6-12-8-12h-4c6 4 10 12 10 22zM420 226c6 4 0 0 0 0 6 4 10 10 10 20v6c4 0 6-8 4-14s-6-12-10-12h-4zM694 866c48-22-48 20 0 0 48-22 70-34 40-52-34-20-52-26-52-58 0-10 8-32 4-44-2-8-12-10-18-10-20 20-34 50-68 50-28 0-50-22-56-48-8-4-20-2-26 8-12 24 2 58 6 82 4 36-8 70-4 106 4 42 52 44 80 26 32-20 58-44 94-60z" + ], + "width": 766, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-tux" + ], + "defaultCode": 62149, + "grid": 0 + }, + "properties": { + "id": 676, + "order": 677, + "ligatures": "", + "prevSize": 32, + "code": 62149, + "name": "ion-social-tux" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 675 + }, + { + "icon": { + "paths": [ + "M64 64h768v544l-224 224h-160l-128 128h-128v-128h-192v-608zM736 576v-416h-608v544h160v128l128-128h192zM544 544v-258h96v258h-96zM320 544v-258h96v258h-96z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-twitch-outline" + ], + "defaultCode": 62701, + "grid": 0 + }, + "properties": { + "id": 677, + "order": 678, + "ligatures": "", + "prevSize": 32, + "code": 62701, + "name": "ion-social-twitch-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 676 + }, + { + "icon": { + "paths": [ + "M64 64h768v544l-224 224h-160l-128 128h-128v-128h-192v-608zM416 544v-258h-96v258h96zM640 544v-258h-96v258h96z" + ], + "width": 832, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-twitch" + ], + "defaultCode": 62702, + "grid": 0 + }, + "properties": { + "id": 678, + "order": 679, + "ligatures": "", + "prevSize": 32, + "code": 62702, + "name": "ion-social-twitch" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 677 + }, + { + "icon": { + "paths": [ + "M944 220c-26 40-58 72-96 100v24c0 256-196 552-552 552-110 0-210-32-296-88 16 2 30 4 46 4 90 0 174-32 240-84-84-2-156-58-180-134 12 2 24 4 36 4 18 0 36-4 52-8-88-18-156-96-156-190v-2c26 14 56 24 88 24-52-34-86-94-86-162 0-36 10-68 26-96 96 118 238 194 398 202-4-14-4-28-4-44 0-108 86-194 194-194 56 0 104 24 140 62 44-8 86-26 124-48-14 46-46 84-86 108 40-4 78-14 112-30zM828 294c6-4 16-12 22-16-4 0-22 4-38 2s-42-10-42-10 28-26 36-34l22-22c-8 2-20 4-28 6l-16 4-12-12c-30-32-74-52-118-52-90 0-162 74-162 162 0 12 2 24 4 36l10 42-44-2c-84-4-162-26-236-64-56-28-106-68-150-112-2 12-4 26-4 38 0 54 28 106 72 136 0 0 66 46 92 58-48 4-112 0-112 0-16 0-32-2-48-6 16 56 64 100 124 112l122 20-122 42c-14 4-28 6-42 6 30 40 76 68 128 68l90 2-70 56c-36 28-76 50-120 66-20 6-38 12-58 16 54 18 110 28 168 28 80 0 156-16 224-48 62-28 116-68 162-120 44-48 76-106 100-168 22-60 34-124 34-184v-24l-2-16z" + ], + "width": 944, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-twitter-outline" + ], + "defaultCode": 62018, + "grid": 0 + }, + "properties": { + "id": 679, + "order": 680, + "ligatures": "", + "prevSize": 32, + "code": 62018, + "name": "ion-social-twitter-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 678 + }, + { + "icon": { + "paths": [ + "M944 220c-26 40-58 72-96 100v24c0 256-196 552-552 552-110 0-210-32-296-88 16 2 30 4 46 4 90 0 174-32 240-84-84-2-156-58-180-134 12 2 24 4 36 4 18 0 36-4 52-8-88-18-156-96-156-190v-2c26 14 56 24 88 24-52-34-86-94-86-162 0-36 10-68 26-96 96 118 238 194 398 202-4-14-4-28-4-44 0-108 86-194 194-194 56 0 104 24 140 62 44-8 86-26 124-48-14 46-46 84-86 108 40-4 78-14 112-30z" + ], + "width": 944, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-twitter" + ], + "defaultCode": 62019, + "grid": 0 + }, + "properties": { + "id": 680, + "order": 681, + "ligatures": "", + "prevSize": 32, + "code": 62019, + "name": "ion-social-twitter" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 679 + }, + { + "icon": { + "paths": [ + "M250 206c22-4 38-6 38-6v262l-44-12c-30-10-54-22-72-38-24-20-38-50-38-86 0-26 8-48 22-66 12-16 26-28 44-38 14-8 34-12 50-16zM256 420v-184c-14 4-30 8-42 14-14 8-24 18-34 30s-14 28-14 46c0 26 8 48 26 62 16 14 40 24 64 32zM504 594c20 20 30 48 30 84 0 18-2 36-10 54s-22 34-40 48c-16 12-36 22-62 30-12 4-22 6-34 8s-36 2-36 2v-290l40 10c20 6 38 12 56 18 20 8 40 20 56 36zM494 718c6-14 8-26 8-40 0-28-6-48-20-62s-30-22-46-28-32-10-52-16v214c12-2 20-4 28-6 22-6 40-16 54-26s22-22 28-36zM630 606c6 20 10 38 10 58 0 42-10 76-28 106s-40 52-70 70-62 34-100 42c-20 4-38 6-58 8v70h-128v-70c-18-2-38-8-56-12-40-10-72-24-102-46s-52-48-70-82c-16-32-26-68-28-110h138c0 24 4 48 14 66 10 20 24 34 42 46s40 22 62 28v-240c-16-4-36-8-54-12-34-8-60-18-82-32s-40-30-54-46-22-34-28-52-8-36-8-56c0-36 8-68 24-96s38-50 66-68 58-32 92-40c14-4 30-6 44-8v-66h128v66c18 2 32 8 48 12 36 10 68 24 96 44s50 44 66 74c14 26 22 56 24 92h-138c-6-42-24-74-52-92-14-8-26-16-44-20v212c18 4 32 8 50 12 24 6 44 12 54 14 26 8 46 18 66 30 20 14 36 28 48 44s22 34 28 54zM586 752c14-24 22-54 22-88 0-16-2-32-8-48s-14-30-24-44-24-26-40-38c-16-10-36-20-58-26-10-2-26-6-48-12h-2l-8-2c-14-4-26-8-42-12l-26-6v-274s18 2 38 8 38 12 56 24c30 18 50 48 60 86h76c-4-16-8-30-16-44-14-26-32-48-56-64-24-18-54-32-86-40-16-4-32-8-46-10l-26-4v-62h-64v62l-28 4c-14 2-28 4-40 8-30 8-58 20-82 36s-42 32-56 56c-14 22-20 48-20 80 0 16 2 30 6 46 4 14 12 28 22 42s28 26 46 38c20 12 44 20 74 28v0 0c8 2 16 4 22 6 10 2 22 6 32 8l24 6v302s-16-2-40-8-52-16-72-30c-22-16-40-36-52-60-8-14-12-32-16-48h-72c4 22 10 46 20 64 16 28 34 52 60 70 26 20 56 32 92 42 16 4 34 8 52 10l28 4v66h64v-66l30-2c18-2 34-6 52-10 34-8 64-20 90-36s46-38 62-62z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-usd-outline" + ], + "defaultCode": 62290, + "grid": 0 + }, + "properties": { + "id": 681, + "order": 682, + "ligatures": "", + "prevSize": 32, + "code": 62290, + "name": "ion-social-usd-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 680 + }, + { + "icon": { + "paths": [ + "M630 606c6 20 10 38 10 58 0 42-10 76-28 106s-40 52-70 70-62 34-100 42c-20 4-38 6-58 8v70h-128v-70c-18-2-38-8-56-12-40-10-72-24-102-46s-52-48-70-82c-16-32-26-68-28-110h138c0 24 4 48 14 66 10 20 24 34 42 46s40 22 62 28v-240c-16-4-36-8-54-12-34-8-60-18-82-32s-40-30-54-46-22-34-28-52-8-36-8-56c0-36 8-68 24-96s38-50 66-68 58-32 92-40c14-4 30-6 44-8v-66h128v66c18 2 32 8 48 12 36 10 68 24 96 44s50 44 66 74c14 26 22 56 24 92h-138c-6-42-24-74-52-92-14-8-26-16-44-20v212c18 4 32 8 50 12 24 6 44 12 54 14 26 8 46 18 66 30 20 14 36 28 48 44s22 34 28 54zM256 420v-184c-14 4-30 8-42 14-14 8-24 18-34 30s-14 28-14 46c0 26 8 48 26 62 16 14 40 24 64 32zM494 718c6-14 8-26 8-40 0-28-6-48-20-62s-30-22-46-28-32-10-52-16v214c12-2 20-4 28-6 22-6 40-16 54-26s22-22 28-36z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-usd" + ], + "defaultCode": 62291, + "grid": 0 + }, + "properties": { + "id": 682, + "order": 683, + "ligatures": "", + "prevSize": 32, + "code": 62291, + "name": "ion-social-usd" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 681 + }, + { + "icon": { + "paths": [ + "M890 228c14 66 2 132-26 194s-62 118-102 174c-52 72-104 142-170 202-38 36-82 70-132 88-20 8-38 10-54 10-34 0-62-18-88-54-28-38-44-80-56-126-24-90-50-180-76-268-8-24-18-44-30-66-6-10-16-20-24-28-4-4-10-6-16-6s-12 2-18 6c-20 12-56 36-56 36l-42-54c52-48 164-142 164-142 22-18 66-50 96-54h16c36 0 64 14 84 44 22 34 30 74 36 114 14 82 24 164 48 244 6 20 14 40 24 58 8 14 18 20 28 20 8 0 14-4 22-10s14-12 20-20c40-48 74-104 96-162 6-18 6-34 6-54 0-26-20-50-50-52h-14c-22 0-40 4-64 14 12-48 48-124 108-168 40-28 90-40 134-40 20 0 40 4 54 8 46 16 72 46 82 92zM836 408c26-60 34-118 22-174-8-38-26-56-60-68-12-4-28-6-44-6-42 0-84 12-114 34-32 24-58 60-76 96h28c46 2 78 38 80 82 0 20 0 44-8 68-22 58-58 116-102 170-8 8-14 18-24 26-14 12-30 16-44 16-16 0-36-6-54-36-14-22-22-44-28-64-20-62-28-128-38-190-4-20-6-38-10-58-6-34-12-72-32-102-14-20-32-30-56-30h-12c-16 2-50 22-80 46-4 4-86 74-140 122l4 6c10-8 24-14 32-20 12-6 24-10 36-10 14 0 26 6 36 14 16 14 26 24 32 36 12 22 24 48 32 74 26 88 52 176 76 266 10 38 26 82 52 118s46 40 62 40c12 0 26-2 42-8 46-16 86-50 122-82 64-58 114-126 166-198v0c42-56 74-110 100-168z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-vimeo-outline" + ], + "defaultCode": 62020, + "grid": 0 + }, + "properties": { + "id": 683, + "order": 684, + "ligatures": "", + "prevSize": 32, + "code": 62020, + "name": "ion-social-vimeo-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 682 + }, + { + "icon": { + "paths": [ + "M890 228c14 66 2 132-26 194s-62 118-102 174c-52 72-104 142-170 202-38 36-82 70-132 88-62 22-104 10-142-44-28-38-44-80-56-126-24-90-50-180-76-268-8-24-18-44-30-66-6-10-16-20-24-28-10-8-22-6-34 0-20 12-56 36-56 36l-42-54c52-48 164-142 164-142 22-18 66-50 96-54 42-6 76 8 100 44 22 34 30 74 36 114 14 82 22 164 46 244 6 20 16 40 26 58 14 22 30 26 50 10 8-6 14-12 20-20 40-48 74-104 96-162 6-18 6-34 6-54 0-26-20-50-50-52s-48 2-78 14c12-48 48-124 108-168 58-42 142-48 188-32s72 46 82 92z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-vimeo" + ], + "defaultCode": 62021, + "grid": 0 + }, + "properties": { + "id": 684, + "order": 685, + "ligatures": "", + "prevSize": 32, + "code": 62021, + "name": "ion-social-vimeo" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 683 + }, + { + "icon": { + "paths": [ + "M356 308c8 22 30 78 32 84s4 12 0 20-6 12-12 18-12 14-18 18c-6 6-12 12-6 24s28 48 60 78c42 40 76 54 88 60s18 6 24-2 30-32 38-42 16-10 26-6 62 34 74 40 20 10 22 14 0 26-10 52-56 48-76 50-22 16-134-32-180-168-186-176-44-62-42-116 34-82 44-92 22-14 30-14h20s18 0 26 22zM456 128c-100 0-194 40-266 110-70 70-110 162-110 262 0 68 18 134 54 192l16 26-10 28-38 114 148-46 24 12c56 30 118 46 182 46 100 0 194-38 266-108 70-70 110-164 110-264s-40-192-110-262c-72-70-166-110-266-110zM456 64v0c242 0 440 194 440 436s-198 436-440 436c-78 0-148-20-212-54l-244 78 80-234c-40-66-64-144-64-226 0-242 198-436 440-436z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-whatsapp-outline" + ], + "defaultCode": 62703, + "grid": 0 + }, + "properties": { + "id": 685, + "order": 686, + "ligatures": "", + "prevSize": 32, + "code": 62703, + "name": "ion-social-whatsapp-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 684 + }, + { + "icon": { + "paths": [ + "M456 64c242 0 440 194 440 436s-198 436-440 436c-78 0-148-20-212-54l-244 78 80-234c-40-66-64-144-64-226 0-242 198-436 440-436zM674 666c10-26 12-48 10-52s-10-8-22-14-64-36-74-40-18-4-26 6-32 34-38 42-12 8-24 2-46-20-88-60c-32-30-54-66-60-78s0-18 6-24c6-4 12-12 18-18s8-10 12-18 2-14 0-20-24-62-32-84-20-22-26-22h-20s-20 4-30 14-42 38-44 92 36 108 42 116 74 128 186 176 114 34 134 32 66-24 76-50z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-whatsapp" + ], + "defaultCode": 62704, + "grid": 0 + }, + "properties": { + "id": 686, + "order": 687, + "ligatures": "", + "prevSize": 32, + "code": 62704, + "name": "ion-social-whatsapp" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 685 + }, + { + "icon": { + "paths": [ + "M864 562h-432v298l432 64v-362zM896 530v0 430l-496-72v-358h496zM336 562h-304v240l304 44v-284zM368 530v0 354l-368-54v-300h368zM864 100v0l-432 62v304h432v-366zM896 64v0 434h-496v-364zM336 176v0l-304 44v246h304v-290zM368 140v0 358h-368v-306z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-windows-outline" + ], + "defaultCode": 62022, + "grid": 0 + }, + "properties": { + "id": 687, + "order": 688, + "ligatures": "", + "prevSize": 32, + "code": 62022, + "name": "ion-social-windows-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 686 + }, + { + "icon": { + "paths": [ + "M896 530v0 430l-496-72v-358h496zM368 530v0 354l-368-54v-300h368zM896 64v0 434h-496v-364zM368 140v0 358h-368v-306z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-windows" + ], + "defaultCode": 62023, + "grid": 0 + }, + "properties": { + "id": 688, + "order": 689, + "ligatures": "", + "prevSize": 32, + "code": 62023, + "name": "ion-social-windows" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 687 + }, + { + "icon": { + "paths": [ + "M384 128c212 0 384 172 384 384 0 18-2 36-4 52-24 170-158 306-330 328-16 2-34 4-50 4-212 0-384-172-384-384s172-384 384-384zM38 512c0 136 80 254 196 310l-166-450c-20 42-30 90-30 140zM428 854c24-4 48-8 70-16 0-2-2-4-2-6l-106-290-66 192-38 110c30 10 64 14 98 14 16 0 30-2 44-4zM432 350l124 372 34-116c18-44 26-82 26-112 0-42-14-70-28-94-18-28-34-54-34-82 0-32 24-60 58-60h4c-62-56-142-90-232-90-120 0-226 60-288 154 8 0 16 2 22 2 36 0 92-6 92-6 18-2 20 28 2 30 0 0-20 2-40 2l126 374 76-226-54-148c-18 0-36-2-36-2-18 0-16-32 2-30 0 0 56 6 90 6 36 0 92-6 92-6 18-2 22 28 4 30 0 0-20 2-40 2zM558 810c90-52 154-142 168-250 2-16 4-32 4-48 0-60-16-116-44-166 2 12 2 24 2 36 0 36-6 74-26 124l-78 226z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-wordpress-outline" + ], + "defaultCode": 62024, + "grid": 0 + }, + "properties": { + "id": 689, + "order": 690, + "ligatures": "", + "prevSize": 32, + "code": 62024, + "name": "ion-social-wordpress-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 688 + }, + { + "icon": { + "paths": [ + "M390 542l106 292c0 2 12 26 18 38-6 2-10 4-16 6v0c-20 6-42 12-64 14-16 2-34 4-50 4-34 0-68-4-100-12v0c-4 0-6-4-10-4l50-146zM34 360c12 0 14 2 30 2l186 510c-6-2-10-4-16-6-126-54-218-174-232-316-2-12-2-26-2-38 0-50 14-106 34-152zM732 350c22 48 36 104 36 162 0 18-2 36-4 52-18 130-100 240-214 294-4 2-6 2-10 4l44-130 78-226c20-50 26-90 26-124v-38c-2-36-20-88-72-86h-4c-34 0-58 28-58 60 0 28 16 54 34 82 14 24 28 52 28 94 0 30-8 68-26 112l-34 116-124-372c20 0 40-2 40-2 18-2 14-32-4-30 0 0-56 6-92 6-34 0-90-6-90-6-18-2-20 30-2 30 0 0 18 2 36 2l54 148-76 226-126-374c20 0 40-4 40-4 18-2 16-30-2-28 0 0-56 4-92 4h-68c10-18 22-34 34-50 70-88 180-144 300-144 48 0 96 10 138 26 68 26 126 72 170 130 4 4 6 10 10 14 12 16 22 34 30 52z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-wordpress" + ], + "defaultCode": 62025, + "grid": 0 + }, + "properties": { + "id": 690, + "order": 691, + "ligatures": "", + "prevSize": 32, + "code": 62025, + "name": "ion-social-wordpress" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 689 + }, + { + "icon": { + "paths": [ + "M578 136c22 0 42-2 62-8l-256 426v342c-20-8-42-8-64-8s-44 0-64 8v-342l-256-426c20 8 42 8 64 8s44 0 64-8l192 320 192-320c20 8 44 8 66 8zM356 536l222-368h-2c-14 0-30 0-48-4l-180 300-28 46-28-46-178-300c-18 4-34 4-50 4h-2l222 368 4 8v312c12-2 22 0 32 0s22-2 32 0v-312z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-yahoo-outline" + ], + "defaultCode": 62026, + "grid": 0 + }, + "properties": { + "id": 691, + "order": 692, + "ligatures": "", + "prevSize": 32, + "code": 62026, + "name": "ion-social-yahoo-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 690 + }, + { + "icon": { + "paths": [ + "M578 136c22 0 42-2 62-8l-256 426v342c-20-8-42-8-64-8s-44 0-64 8v-342l-256-426c20 8 42 8 64 8s44 0 64-8l192 320 192-320c20 8 44 8 66 8z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-yahoo" + ], + "defaultCode": 62027, + "grid": 0 + }, + "properties": { + "id": 692, + "order": 693, + "ligatures": "", + "prevSize": 32, + "code": 62027, + "name": "ion-social-yahoo" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 691 + }, + { + "icon": { + "paths": [ + "M768 64l-224 416h96v96h-146l-30 62v34h176v96h-176v192h-160v-192h-176v-96h176v-34l-28-62h-148v-96h96l-224-416h160l224 442 224-442h160zM608 512h-118l26-48 198-368h-86l-244 480-244-480h-86l198 368 26 48h-118v32h136l40 88v72h-176v32h176v192h96v-192h176v-32h-176v-74l42-86h134v-32z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-yen-outline" + ], + "defaultCode": 62705, + "grid": 0 + }, + "properties": { + "id": 693, + "order": 694, + "ligatures": "", + "prevSize": 32, + "code": 62705, + "name": "ion-social-yen-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 692 + }, + { + "icon": { + "paths": [ + "M768 64l-224 416h96v96h-146l-30 62v34h176v96h-176v192h-160v-192h-176v-96h176v-34l-28-62h-148v-96h96l-224-416h160l224 442 224-442h160z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-yen" + ], + "defaultCode": 62706, + "grid": 0 + }, + "properties": { + "id": 694, + "order": 695, + "ligatures": "", + "prevSize": 32, + "code": 62706, + "name": "ion-social-yen" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 693 + }, + { + "icon": { + "paths": [ + "M530 192v0h-36c-130 0-236 4-336 8h-4c-46 0-84 44-84 98v4c-4 68-6 140-6 210v0 0c0 70 2 140 6 208v6c0 28 10 52 28 72 16 18 34 26 56 26h4c104 4 216 8 332 8h44c116 0 226-4 332-8h4c22 0 40-8 56-26 18-20 28-44 28-72v-6c4-68 6-136 6-208v0 0c0-72-2-142-6-210v-6c0-54-38-98-84-98h-4c-98-4-206-6-336-6zM530 128v0c116 0 230 0 340 6 82 0 148 72 148 162 4 72 6 144 6 216s-2 142-6 214c0 90-66 162-148 162-110 6-222 8-336 8h-44c-114 0-226-2-336-8-82 0-148-72-148-162-4-72-6-142-6-214s4-142 8-214c0-90 64-164 146-164 110-4 224-6 340-6h36zM414 708v-394l290 198z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-youtube-outline" + ], + "defaultCode": 62028, + "grid": 0 + }, + "properties": { + "id": 695, + "order": 696, + "ligatures": "", + "prevSize": 32, + "code": 62028, + "name": "ion-social-youtube-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 694 + }, + { + "icon": { + "paths": [ + "M1018 298c4 72 6 142 6 214s-2 142-6 214c0 90-66 162-148 162-116 6-236 8-358 8s-242-2-358-8c-82 0-148-72-148-162-4-72-6-142-6-214s4-142 8-214c0-90 64-162 146-162 110-6 224-8 340-8h36c116 0 230 2 340 8 82 0 148 72 148 162zM414 708l290-196-290-198v394z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-social-youtube" + ], + "defaultCode": 62029, + "grid": 0 + }, + "properties": { + "id": 696, + "order": 697, + "ligatures": "", + "prevSize": 32, + "code": 62029, + "name": "ion-social-youtube" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 695 + }, + { + "icon": { + "paths": [ + "M320 288c-176 0-320-58-320-128s144-128 320-128 320 58 320 128-144 128-320 128zM320 66c-140 0-252 38-252 86s112 86 252 86 252-38 252-86-112-86-252-86zM322 320c176 0 316-58 318-128 0 10 0 66-16 80v480c0 70-128 128-304 128s-304-58-304-128v-480c-16-12-16-80-16-80 0 70 146 128 322 128zM560 752v-160c-36 20-86 34-144 42h-4c-12 40-48 70-92 70s-80-30-92-70h-4c-58-8-108-22-144-42v160c2 4 18 20 60 36 48 18 110 28 180 28s134-10 182-28c42-16 58-32 58-36zM560 528v-182c-66 24-150 38-238 38-90 0-174-14-242-38v182c36 20 86 34 146 42h6c14-34 48-58 88-58s74 24 88 58h6c60-8 110-22 146-42zM320 928v0zM624 832l16 32c0 14-6 28-16 40-42 52-162 88-304 88s-262-36-304-88c-10-12-16-26-16-40l16-32v-32c0 70 126 128 304 128s304-56 304-128v32z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-soup-can-outline" + ], + "defaultCode": 62707, + "grid": 0 + }, + "properties": { + "id": 697, + "order": 698, + "ligatures": "", + "prevSize": 32, + "code": 62707, + "name": "ion-soup-can-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 696 + }, + { + "icon": { + "paths": [ + "M0 160c0-86 106-128 320-128s320 42 320 128-106 128-320 128-320-42-320-128zM320 880c-88 0-160-12-218-36s-86-56-86-92v-256c0 18 8 38 26 54s42 30 74 42 66 20 108 26c2 24 14 46 32 62s40 24 64 24 46-8 64-24 30-38 32-62c62-8 112-24 150-46s58-48 58-76v256c0 36-28 68-86 92s-130 36-218 36zM320 320c88 0 164-12 226-36s94-56 94-92v16c0 10-2 22-4 36s-6 22-12 28v192c0 28-20 54-58 76s-88 38-152 46c-4-22-16-38-34-52s-38-22-60-22-42 8-60 22-30 30-34 52c-64-8-114-24-152-46s-58-48-58-76v-192c-10-10-16-36-16-80 0 36 32 68 94 92s138 36 226 36zM624 784v48l16 32c0 14-6 28-16 40-22 26-60 48-116 64s-118 24-188 24-132-8-188-24-94-38-116-64c-10-12-16-26-16-40l16-32v-48c0 36 28 68 86 92s130 36 218 36 160-12 218-36 86-56 86-92z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-soup-can" + ], + "defaultCode": 62708, + "grid": 0 + }, + "properties": { + "id": 698, + "order": 699, + "ligatures": "", + "prevSize": 32, + "code": 62708, + "name": "ion-soup-can" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 697 + }, + { + "icon": { + "paths": [ + "M78 364c0 74 40 138 100 172-2 0-4-2-6-2s-8-2-10-2v0c-70-6-124-66-138-138-12 0-24-14-24-32 0-16 10-30 22-32 12-84 80-150 162-150h16c-72 30-122 102-122 184zM866 182c20 50 30 112 30 176s-10 126-30 176l-6 18c-12 28-30 52-48 68-20 20-44 38-68 40h-6c-14 0-30-4-44-10-6-4-20-10-20-10-44-20-168-56-230-58-8 16-20 40-24 60-4 18-12 54-14 122-2 64 2 118 6 164 0 4 2 10 2 14 0 12-4 18-18 18h-154c-12 0-18-6-18-12v-14c4-144 50-280 52-290 4-18 10-34 14-60 4-24-54-26-80-48-58-34-94-98-94-172 0-82 50-154 118-184h122c116-6 228-42 326-100 2-2 6-2 8-4v0c16-8 32-12 48-12 26 0 52 12 74 32 18 18 36 42 48 70 2 6 4 10 6 16zM820 536c18-44 30-108 30-178s-12-132-30-176c-16-36-38-58-60-58s-42 22-58 58c-18 44-30 106-30 176s12 134 30 178c16 38 36 66 58 66s44-30 60-66z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-speakerphone" + ], + "defaultCode": 62130, + "grid": 0 + }, + "properties": { + "id": 699, + "order": 700, + "ligatures": "", + "prevSize": 32, + "code": 62130, + "name": "ion-speakerphone" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 698 + }, + { + "icon": { + "paths": [ + "M624 512l16 16-128 168v8c0 36-28 64-64 64s-64-28-64-64 28-64 64-64h8zM448 192c248 0 448 200 448 448 0 68-16 134-44 192h-72c30-54 50-114 52-176h-64v-32h64c-2-58-18-112-44-162l-54 30-16-26 54-32c-16-24-32-46-52-66s-42-36-66-52l-32 54-28-16 32-54c-50-26-104-42-162-44v64h-32v-64c-58 2-112 18-162 44l32 54-28 16-32-54c-24 16-46 32-66 52s-38 42-52 66l56 32-16 26-56-30c-26 50-42 104-44 162h64v32h-64c2 62 22 122 52 176h-72c-28-58-44-124-44-192 0-248 200-448 448-448z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-speedometer" + ], + "defaultCode": 62131, + "grid": 0 + }, + "properties": { + "id": 700, + "order": 701, + "ligatures": "", + "prevSize": 32, + "code": 62131, + "name": "ion-speedometer" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 699 + }, + { + "icon": { + "paths": [ + "M256 320c0-128-52-256-128-256s-128 128-128 256v0c2 50 32 108 74 128l2 2c6 4 20 12 20 20 0 0-32 398-32 420s8 40 20 52 28 18 44 18v0 0c16 0 32-6 44-18s20-26 20-52-32-420-32-420c0-8 14-16 20-20l2-2c44-20 74-76 74-128z" + ], + "width": 256, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-spoon" + ], + "defaultCode": 62132, + "grid": 0 + }, + "properties": { + "id": 701, + "order": 702, + "ligatures": "", + "prevSize": 32, + "code": 62132, + "name": "ion-spoon" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 700 + }, + { + "icon": { + "paths": [ + "M896 400l-278 208 110 352-280-224-280 224 110-352-278-208h344l104-336 106 336h342z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-star" + ], + "defaultCode": 62030, + "grid": 0 + }, + "properties": { + "id": 702, + "order": 703, + "ligatures": "", + "prevSize": 32, + "code": 62030, + "name": "ion-star" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 701 + }, + { + "icon": { + "paths": [ + "M192 832v-640h128v640h-128zM0 832v-192h128v192h-128zM384 832v-320h128v320h-128zM576 832v-448h128v448h-128z" + ], + "width": 704, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-stats-bars" + ], + "defaultCode": 62133, + "grid": 0 + }, + "properties": { + "id": 703, + "order": 704, + "ligatures": "", + "prevSize": 32, + "code": 62133, + "name": "ion-stats-bars" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 702 + }, + { + "icon": { + "paths": [ + "M960 416c0 40-32 74-74 74-40 0-74-32-74-74 0-40 32-74 74-74 40 0 74 34 74 74zM886 278c76 0 138 62 138 138s-62 140-138 140l-134 96c-4 52-48 94-102 94-50 0-92-36-102-82l-392-156c-16 10-32 14-52 14-56 0-104-48-104-104s48-104 104-104c50 0 90 36 100 82l392 158c16-10 34-16 54-16 4 0 6 2 10 2l86-124c0-76 64-138 140-138zM886 324c-52 0-94 40-94 92s42 94 94 94 92-42 92-94-40-92-92-92zM104 342c-42 0-76 34-76 76s34 76 76 76c6 0 10 0 16-2l-32-12c-30-14-44-48-32-78s48-46 78-34v0l38 14c-12-24-38-40-68-40zM650 566c-6 0-12 2-18 2l32 12c32 12 46 48 34 80s-46 46-78 34c-12-6-26-12-38-16 12 24 38 40 68 40 42 0 76-34 76-76s-34-76-76-76z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-steam" + ], + "defaultCode": 62219, + "grid": 0 + }, + "properties": { + "id": 704, + "order": 705, + "ligatures": "", + "prevSize": 32, + "code": 62219, + "name": "ion-steam" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 703 + }, + { + "icon": { + "paths": [ + "M746 128c12 0 22 10 22 22v724c0 12-10 22-22 22h-724c-12 0-22-10-22-22v-724c0-12 10-22 22-22h724z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-stop" + ], + "defaultCode": 62031, + "grid": 0 + }, + "properties": { + "id": 705, + "order": 706, + "ligatures": "", + "prevSize": 32, + "code": 62031, + "name": "ion-stop" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 704 + }, + { + "icon": { + "paths": [ + "M254 672c40 28 66 76 66 128 0 88-72 160-160 160s-160-72-160-160c0-54 26-102 66-130v-514c0-52 42-92 94-92s94 40 94 92v516zM130 156v100h60v-100c0-16-14-28-30-28s-30 12-30 28zM192 576v-32h-32v32h32zM192 512v-128h-32v128h32z" + ], + "width": 320, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-thermometer" + ], + "defaultCode": 62134, + "grid": 0 + }, + "properties": { + "id": 706, + "order": 707, + "ligatures": "", + "prevSize": 32, + "code": 62134, + "name": "ion-thermometer" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 705 + }, + { + "icon": { + "paths": [ + "M48 506c-20-10-36-34-36-58 0-28 16-50 40-60-8-10-12-24-12-38 0-28 16-50 40-60-6-10-10-22-10-34 0-36 22-48 70-60s148-24 252-18c46 2 110 14 152 14v-64h224v480h-224v-32c-30 2-62 8-80 28-44 46-80 130-80 216 0 38 2 58-8 68-26 26-88-18-104-74-18-68-2-124 2-174h-206c-38 0-68-30-68-68 0-30 20-58 48-66zM672 192c-18 0-32 14-32 32s14 32 32 32 32-14 32-32-14-32-32-32z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-thumbsdown" + ], + "defaultCode": 62032, + "grid": 0 + }, + "properties": { + "id": 707, + "order": 708, + "ligatures": "", + "prevSize": 32, + "code": 62032, + "name": "ion-thumbsdown" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 706 + }, + { + "icon": { + "paths": [ + "M720 518c20 10 36 34 36 58 0 28-16 50-40 60 8 10 12 24 12 38 0 28-16 50-40 60 6 10 10 22 10 34 0 36-22 48-70 60s-148 24-252 18c-46-2-110-14-152-14v64h-224v-480h224v32c30-2 62-8 80-28 44-46 80-130 80-216 0-38-2-58 8-68 26-26 88 18 104 74 18 68 2 124-2 174h206c38 0 68 30 68 68 0 30-20 58-48 66zM96 832c18 0 32-14 32-32s-14-32-32-32-32 14-32 32 14 32 32 32z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-thumbsup" + ], + "defaultCode": 62033, + "grid": 0 + }, + "properties": { + "id": 708, + "order": 709, + "ligatures": "", + "prevSize": 32, + "code": 62033, + "name": "ion-thumbsup" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 707 + }, + { + "icon": { + "paths": [ + "M640 416c52 0 96 44 96 96s-44 96-96 96-96-44-96-96 44-96 96-96zM640 256c142 0 256 114 256 256s-114 256-256 256h-384c-142 0-256-114-256-256s114-256 256-256h384zM640 672c88 0 160-72 160-160s-72-160-160-160-160 72-160 160 72 160 160 160z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-toggle-filled" + ], + "defaultCode": 62292, + "grid": 0 + }, + "properties": { + "id": 709, + "order": 710, + "ligatures": "", + "prevSize": 32, + "code": 62292, + "name": "ion-toggle-filled" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 708 + }, + { + "icon": { + "paths": [ + "M640 320h-384c-106 0-192 86-192 192s86 192 192 192h384c106 0 192-86 192-192s-86-192-192-192zM640 256v0c142 0 256 114 256 256s-114 256-256 256h-384c-142 0-256-114-256-256s114-256 256-256h384zM256 416c-52 0-96 44-96 96s44 96 96 96 96-44 96-96-44-96-96-96zM256 352v0c88 0 160 72 160 160s-72 160-160 160-160-72-160-160 72-160 160-160z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-toggle" + ], + "defaultCode": 62293, + "grid": 0 + }, + "properties": { + "id": 710, + "order": 711, + "ligatures": "", + "prevSize": 32, + "code": 62293, + "name": "ion-toggle" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 709 + }, + { + "icon": { + "paths": [ + "M736 0h288v288h-80v-152l-202 200c16 34 26 72 26 112 0 126-92 230-208 252v104h144v92h-144v128h-96v-128h-144v-92h144v-104c-118-22-208-126-208-252 0-40 10-78 26-112l-44-44-72 72-66-66 72-72-92-90v152h-80v-288h288v80h-140l86 84 72-72 66 66-72 72 34 34c46-44 108-72 178-72 54 0 106 16 148 46 0 0 12 10 30 26l186-184h-140v-80zM512 608c88 0 160-72 160-160s-72-160-160-160-160 72-160 160 72 160 160 160z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-transgender" + ], + "defaultCode": 62709, + "grid": 0 + }, + "properties": { + "id": 711, + "order": 712, + "ligatures": "", + "prevSize": 32, + "code": 62709, + "name": "ion-transgender" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 710 + }, + { + "icon": { + "paths": [ + "M522 256v0h182v64h-18s-10 2-16 8-8 18-8 18l-38 482c-4 58-4 68-72 68h-400c-68 0-68-10-72-68l-38-484s-2-12-8-18-16-6-16-6h-18v-64h182v-58c0-38 28-70 68-70h202c40 0 70 32 70 70v58zM224 198v58h256v-58c0-20-18-30-38-30h-182c-20 0-36 10-36 30zM208 768h40l-20-384h-42zM374 768v-384h-44v384h44zM498 768l20-384h-40l-22 384h42z" + ], + "width": 704, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-trash-a" + ], + "defaultCode": 62034, + "grid": 0 + }, + "properties": { + "id": 712, + "order": 713, + "ligatures": "", + "prevSize": 32, + "code": 62034, + "name": "ion-trash-a" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 711 + }, + { + "icon": { + "paths": [ + "M636 266c6 24 8 22-14 22h-604c-22 0-20 2-14-22 4-18 8-26 8-26 6-18 18-18 38-22l106-14c14-2 14-2 20-14 18-40 20-62 40-62h206c20 0 24 22 42 62 6 12 6 12 20 14l106 12c20 4 32 4 38 22 0 0 4 10 8 28zM566 352c34 0 36 4 34 30l-38 484c-4 24-4 30-34 30h-416c-30 0-30-6-34-30l-38-484c-2-24 0-30 34-30h492z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-trash-b" + ], + "defaultCode": 62035, + "grid": 0 + }, + "properties": { + "id": 713, + "order": 714, + "ligatures": "", + "prevSize": 32, + "code": 62035, + "name": "ion-trash-b" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 712 + }, + { + "icon": { + "paths": [ + "M896 206c0 50 4 146-44 244-30 60-72 110-126 150-46 32-98 56-154 70-32 34-64 54-92 62v66s0 98 198 98h26v64h-512v-64h26c170 0 194-70 198-92v-72c-28-8-60-28-92-62-56-14-110-38-154-70-54-40-96-90-126-150-34-72-42-142-44-194v0-64h160c-4-70 0-128 0-128h574s4 58 0 128h162v14zM102 422c34 68 86 122 154 156-44-80-66-168-84-270-2-16-4-34-6-52h-102c2 46 10 106 38 166zM794 422c28-60 36-120 38-166h-102c-2 18-6 36-8 52-18 102-40 190-84 270 68-34 122-86 156-156z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-trophy" + ], + "defaultCode": 62294, + "grid": 0 + }, + "properties": { + "id": 714, + "order": 715, + "ligatures": "", + "prevSize": 32, + "code": 62294, + "name": "ion-trophy" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 713 + }, + { + "icon": { + "paths": [ + "M292 172l-208 62 22 64 78-8 76-10-4 76-28 510h440l-28-510-4-76 76 10 78 8 22-64-208-62c-12 16-26 28-42 38-30 20-68 30-114 30v0 0c-68-2-118-22-156-68zM576 96v0l320 96-64 176-128-16 32 578h-576l32-578-128 16-64-176 320-96c28 54 62 78 128 80 66 0 100-26 128-80z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-tshirt-outline" + ], + "defaultCode": 62710, + "grid": 0 + }, + "properties": { + "id": 715, + "order": 716, + "ligatures": "", + "prevSize": 32, + "code": 62710, + "name": "ion-tshirt-outline" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 714 + }, + { + "icon": { + "paths": [ + "M896 192l-64 176-128-16 32 576h-576l32-576-128 16-64-176 320-96c28 54 62 78 128 80 66 0 100-26 128-80z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-tshirt" + ], + "defaultCode": 62711, + "grid": 0 + }, + "properties": { + "id": 716, + "order": 717, + "ligatures": "", + "prevSize": 32, + "code": 62711, + "name": "ion-tshirt" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 715 + }, + { + "icon": { + "paths": [ + "M688 576v0 0 0zM208 576v0 0 0zM480 98c232 16 416 218 416 454v24c-8-50-52-104-104-104-58 0-104 46-104 104v0c0-58-46-104-104-104s-98 24-104 90v270c0 34-12 66-36 90s-58 38-92 38c-70 0-126-58-126-128 0-18 14-32 32-32s32 14 32 32c0 36 28 64 62 64 36 0 64-28 64-64v-268c-2-48-52-92-104-92-58 0-104 46-104 104v0c0-58-46-104-104-104-54 0-98 52-104 104v-36c0-236 184-426 416-442v-2c0-18 14-32 32-32s32 14 32 32v2z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-umbrella" + ], + "defaultCode": 62135, + "grid": 0 + }, + "properties": { + "id": 717, + "order": 718, + "ligatures": "", + "prevSize": 32, + "code": 62135, + "name": "ion-umbrella" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 716 + }, + { + "icon": { + "paths": [ + "M448 128l448 222-184 120-264 170-320-204v396l-64-32v-406l-64-42zM716 512l20 164c-32 24-224 156-288 220-64-64-256-196-288-220l18-164 270 176z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-university" + ], + "defaultCode": 62295, + "grid": 0 + }, + "properties": { + "id": 718, + "order": 719, + "ligatures": "", + "prevSize": 32, + "code": 62295, + "name": "ion-university" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 717 + }, + { + "icon": { + "paths": [ + "M44 960c-24 0-44-20-44-44v-424c0-24 20-44 44-44h44v-62c0-84 34-174 86-230s128-92 210-92v0 0c82 0 158 36 210 92 40 42 66 102 78 164h-106c-10-36-26-70-48-94v0-2c-36-38-84-58-134-58v0 0c-50 0-98 20-134 58v2c-36 38-56 106-56 160v62h530c24 0 44 20 44 44v424c0 24-20 44-44 44h-680z" + ], + "width": 768, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-unlocked" + ], + "defaultCode": 62036, + "grid": 0 + }, + "properties": { + "id": 719, + "order": 720, + "ligatures": "", + "prevSize": 32, + "code": 62036, + "name": "ion-unlocked" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 718 + }, + { + "icon": { + "paths": [ + "M732 466c90 0 164 74 164 166s-74 168-164 168h-220v-160h96l-160-168-160 168h96v160h-204c-98 0-180-82-180-182 0-80 52-148 122-172 10-58 58-102 118-102 20 0 36 6 52 14 38-80 118-134 210-134 128 0 230 106 230 236v6z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-upload" + ], + "defaultCode": 62037, + "grid": 0 + }, + "properties": { + "id": 720, + "order": 721, + "ligatures": "", + "prevSize": 32, + "code": 62037, + "name": "ion-upload" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 719 + }, + { + "icon": { + "paths": [ + "M32 440v0 0zM512 256c0 22-12 42-28 54v0c-4 2-6 10-6 14-2 40-6 72-18 100-14 38-40 66-78 92-34 24-58 42-72 68-14 24-22 56-22 106v48c0 14 4 26 20 36 8 4 14 12 20 18 16 18 28 42 28 68 0 56-44 100-100 100s-100-44-100-100v-2c0-36 20-66 48-84 10-8 18-10 18-36v0c0-28-6-34-20-54s-36-34-64-52c-38-26-66-54-80-92-12-30-16-62-18-78s-4-18-8-22c-20-12-32-32-32-56 0-36 28-64 64-64s64 28 64 64c0 20-8 40-24 52-6 4-8 22-8 28v0 0c0 18 6 36 14 56 20 42 90 88 104 88s16-10 16-24v-392s-2-4-6-8h-2v-2c-18-12-30-32-30-54 0-36 28-64 64-64s64 28 64 64c0 22-10 42-28 54v0c-4 4-4 6-4 10v280c0 20 4 24 16 22 26-6 96-60 104-86 6-20 12-46 14-82v-2c0-4-4-8-6-12-20-12-32-32-32-56 0-36 28-64 64-64s64 28 64 64zM64 416c18 0 32-14 32-32s-14-32-32-32-32 14-32 32 14 32 32 32zM256 160c18 0 32-14 32-32s-14-32-32-32-32 14-32 32 14 32 32 32zM448 288c18 0 32-14 32-32s-14-32-32-32-32 14-32 32 14 32 32 32z" + ], + "width": 512, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-usb" + ], + "defaultCode": 62136, + "grid": 0 + }, + "properties": { + "id": 721, + "order": 722, + "ligatures": "", + "prevSize": 32, + "code": 62136, + "name": "ion-usb" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 720 + }, + { + "icon": { + "paths": [ + "M670 370v132l226-70v354l-226-70v130c0 10-8 18-18 18h-634c-10 0-18-8-18-18v-476c0-10 8-18 18-18h416v-76c0-8-12-20-20-20h-352v-96h356c72 0 130 58 130 128v64h104c10 0 18 8 18 18zM452 682c40 0 72-32 72-72s-32-70-72-70-72 30-72 70c0 20 8 38 22 52h-136c14-14 22-32 22-52 0-40-32-72-72-72s-72 32-72 72 32 72 72 72h236z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-videocamera" + ], + "defaultCode": 62038, + "grid": 0 + }, + "properties": { + "id": 722, + "order": 723, + "ligatures": "", + "prevSize": 32, + "code": 62038, + "name": "ion-videocamera" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 721 + }, + { + "icon": { + "paths": [ + "M398 816l-190-176h-208v-256h208l190-176v608zM510 712l-40-32c34-48 54-104 54-168s-20-120-54-168l40-32c40 56 66 126 66 200s-26 144-66 200zM644 804l-42-32c54-72 86-162 86-260s-32-188-86-260l42-32c60 82 96 182 96 292s-36 210-96 292zM730 158l40-30c78 108 126 240 126 384s-48 276-126 384l-40-30c72-98 116-222 116-354s-44-256-116-354z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-volume-high" + ], + "defaultCode": 62039, + "grid": 0 + }, + "properties": { + "id": 723, + "order": 724, + "ligatures": "", + "prevSize": 32, + "code": 62039, + "name": "ion-volume-high" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 722 + }, + { + "icon": { + "paths": [ + "M398 816l-190-176h-208v-256h208l190-176v608zM510 712l-40-32c34-48 56-104 56-168s-22-120-56-168l40-32c40 56 66 126 66 200s-26 144-66 200z" + ], + "width": 576, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-volume-low" + ], + "defaultCode": 62040, + "grid": 0 + }, + "properties": { + "id": 724, + "order": 725, + "ligatures": "", + "prevSize": 32, + "code": 62040, + "name": "ion-volume-low" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 723 + }, + { + "icon": { + "paths": [ + "M398 816l-190-176h-208v-256h208l190-176v608zM510 712l-40-32c34-48 56-104 56-168s-22-120-56-168l40-32c40 56 66 126 66 200s-26 144-66 200zM644 804l-42-32c54-72 86-162 86-260s-32-188-86-260l42-32c60 82 96 182 96 292s-36 210-96 292z" + ], + "width": 740, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-volume-medium" + ], + "defaultCode": 62041, + "grid": 0 + }, + "properties": { + "id": 725, + "order": 726, + "ligatures": "", + "prevSize": 32, + "code": 62041, + "name": "ion-volume-medium" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 724 + }, + { + "icon": { + "paths": [ + "M448 434l94-102v360l-94-102h-130v-156h130zM664 120c138 76 232 224 232 392 0 248-200 448-448 448-78 0-152-20-216-54l-2-2c-138-76-230-224-230-392 0-248 200-448 448-448 78 0 150 20 214 56h2zM724 710c40-56 66-124 66-198 0-132-76-246-184-302-12-6-22-12-34-16-38-14-80-22-124-22-74 0-142 24-198 64l146 148h-152l-72-70c-40 56-64 124-64 198 0 130 72 242 180 300 12 6 26 14 38 18 38 14 78 22 122 22 74 0 144-24 200-64l-40-40v-154z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-volume-mute" + ], + "defaultCode": 62042, + "grid": 0 + }, + "properties": { + "id": 726, + "order": 727, + "ligatures": "", + "prevSize": 32, + "code": 62042, + "name": "ion-volume-mute" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 725 + }, + { + "icon": { + "paths": [ + "M384 480l96-96 96 96-96 96zM0 864l352-352 96 96-352 352zM448 192v-128h64v128h-64zM796 208l-90 90-46-44 92-90zM254 298l-90-90 44-44 90 90zM752 796l-92-90 46-46 90 92zM768 512v-64h128v64h-128z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-wand" + ], + "defaultCode": 62296, + "grid": 0 + }, + "properties": { + "id": 727, + "order": 728, + "ligatures": "", + "prevSize": 32, + "code": 62296, + "name": "ion-wand" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 726 + }, + { + "icon": { + "paths": [ + "M350 78c80 82 290 320 290 576 0 170-144 306-320 306-112 0-212-54-268-138-12-18-22-38-30-58-14-34-22-70-22-110v-8c2-134 62-262 128-366 40-62 84-114 118-154 18-20 32-36 44-48l2-2c8-6 16-12 28-12 10 0 20 6 28 12v0zM320 848c110 0 200-90 200-200 0-28-6-56-16-80-34 130-140 232-272 260 26 12 56 20 88 20z" + ], + "width": 640, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-waterdrop" + ], + "defaultCode": 62043, + "grid": 0 + }, + "properties": { + "id": 728, + "order": 729, + "ligatures": "", + "prevSize": 32, + "code": 62043, + "name": "ion-waterdrop" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 727 + }, + { + "icon": { + "paths": [ + "M448 192c160 0 312 60 428 168l20 20-20 18-84 84-18-18c-88-82-206-128-326-128s-238 46-326 128l-18 18-84-84-20-18 20-20c116-108 268-168 428-168v0zM730 512l22 20-20 20-66 64-18 18-20-16c-50-44-114-70-180-70s-130 26-180 70l-20 16-18-18-66-64-20-20 22-20c74-66 166-104 264-108v0h18c104 0 204 38 282 108zM448 832l-124-124-22-20 24-20c34-22 64-40 122-40s94 18 124 40l22 20-20 20-106 104z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-wifi" + ], + "defaultCode": 62044, + "grid": 0 + }, + "properties": { + "id": 729, + "order": 730, + "ligatures": "", + "prevSize": 32, + "code": 62044, + "name": "ion-wifi" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 728 + }, + { + "icon": { + "paths": [ + "M334 590c-22 8-48 16-48 64v188c0 22 8 38 24 50 6 4 14 8 30 12 64 18 96 32 100 36 4 2 8 6 8 14 0 0-28 6-192 6s-192-6-192-6c0-8 4-12 8-14 4-4 36-18 100-36 16-4 22-8 28-12 16-12 22-28 22-50v-188c0-48-22-56-44-64s-36-12-52-22c-24-14-46-32-64-52-40-46-62-104-62-174 0-100 8-200 16-228s28-50 62-50h356c34 0 54 22 62 50s16 130 16 230c0 70-22 126-62 172-18 20-40 38-64 52-16 10-30 14-52 22zM256 540c52 0 100-22 134-56l12-12c32-36 44-70 46-130s-4-166-16-214h-354c-14 70-16 160-14 216s14 92 46 128c4 6 8 12 14 16 34 32 82 52 132 52zM416 342c0 20-2 40-8 58s-16 36-30 50l-10 10c-28 28-68 46-112 46-42 0-82-16-110-44l-12-12c-14-14-24-32-30-50s-6-30-8-58c-2-18 0-68 2-106 2-20 4-38 6-44h306c2 12 4 28 4 44 2 42 2 90 2 106zM384 358v0-52c0-8-8-16-16-16s-16 8-16 16v52c0 6 2 12 6 14 2 2 6 2 10 2 8 0 16-6 16-16zM382 264c2-4 2-8 2-12s-4-8-8-10-8-2-12-2-8 2-10 6-2 8-2 12 4 8 8 10 8 2 12 2 8-2 10-6z" + ], + "width": 512, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-wineglass" + ], + "defaultCode": 62137, + "grid": 0 + }, + "properties": { + "id": 730, + "order": 731, + "ligatures": "", + "prevSize": 32, + "code": 62137, + "name": "ion-wineglass" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 729 + }, + { + "icon": { + "paths": [ + "M60 298c6-24 34-66 84-68h96c48 2 76 44 84 68l58 208c12 46-42 64-54 20l-52-192h-18l92 338h-86v254c0 46-62 46-62 0v-254h-20v254c0 46-64 46-64 0v-254h-84l90-338h-14l-54 192c-14 42-66 26-54-20zM266 138c0 42-34 74-74 74s-74-32-74-74 34-74 74-74 74 32 74 74z" + ], + "width": 384, + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-woman" + ], + "defaultCode": 62045, + "grid": 0 + }, + "properties": { + "id": 731, + "order": 732, + "ligatures": "", + "prevSize": 32, + "code": 62045, + "name": "ion-woman" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 730 + }, + { + "icon": { + "paths": [ + "M860 230c28 28 38 62 36 88s-12 78-64 130-154 84-226 48c-10-6-26-10-42 6-20 18-404 430-404 430-34 38-96 36-132 0s-38-98 0-132c0 0 414-388 430-404s10-32 6-44c-40-94 4-178 48-224 44-48 102-62 130-64 26-2 62 10 88 36l-114 112 20 112 110 20zM118 886c12-12 12-34 0-46s-32-12-44 0-12 34 0 46 32 12 44 0z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-wrench" + ], + "defaultCode": 62138, + "grid": 0 + }, + "properties": { + "id": 732, + "order": 733, + "ligatures": "", + "prevSize": 32, + "code": 62138, + "name": "ion-wrench" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 731 + }, + { + "icon": { + "paths": [ + "M190 496c-98 144-100 278-100 286-56-76-90-168-90-270 0-134 60-256 154-338l6 2c102 36 186 136 186 136s-76 66-156 184zM896 512c0 102-34 194-90 270 0-8-2-142-100-286-80-118-156-184-156-184s84-100 186-136l6-2c94 82 154 204 154 338zM338 162c-74-34-130-24-144-20 72-50 160-78 254-78s182 28 254 78c-14-4-70-12-144 20-58 26-110 70-110 70s-52-44-110-70zM654 586c80 98 108 170 124 216l4 10c-82 92-202 148-334 148s-252-56-334-148l2-10c16-46 46-118 126-216 92-114 206-188 206-188s114 74 206 188z" + ], + "isMulticolor": false, + "isMulticolor2": false, + "tags": [ + "ion-xbox" + ], + "defaultCode": 62220, + "grid": 0 + }, + "properties": { + "id": 733, + "order": 734, + "ligatures": "", + "prevSize": 32, + "code": 62220, + "name": "ion-xbox" + }, + "setIdx": 0, + "setId": 0, + "iconIdx": 732 + } + ], + "height": 1024, + "metadata": { + "name": "icomoon" + }, + "preferences": { + "showGlyphs": true, + "showQuickUse": true, + "showQuickUse2": true, + "showSVGs": true, + "fontPref": { + "prefix": "icon-", + "metadata": { + "fontFamily": "icomoon" + }, + "metrics": { + "emSize": 1024, + "baseline": 12.5 + }, + "embed": false + }, + "imagePref": { + "prefix": "icon-", + "png": true, + "useClassSelector": true, + "color": 0, + "bgColor": 16777215, + "classSelector": ".icon" + }, + "historySize": 50, + "showCodes": false, + "gridSize": 16, + "showLiga": false + } +} \ No newline at end of file diff --git a/src/assets/fonts/icomoon/style.css b/src/assets/fonts/icomoon/style.css new file mode 100755 index 0000000..7d6dcae --- /dev/null +++ b/src/assets/fonts/icomoon/style.css @@ -0,0 +1,3010 @@ +@font-face { + font-family: 'icomoon'; + src: url('fonts/icomoon.eot?lc1wol'); + src: url('fonts/icomoon.eot?lc1wol#iefix') format('embedded-opentype'), + url('fonts/icomoon.ttf?lc1wol') format('truetype'), + url('fonts/icomoon.woff?lc1wol') format('woff'), + url('fonts/icomoon.svg?lc1wol#icomoon') format('svg'); + font-weight: normal; + font-style: normal; +} + +[class^="icon-"], [class*=" icon-"] { + /* use !important to prevent issues with browser extensions that change fonts */ + font-family: 'icomoon' !important; + speak: none; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + line-height: 1; + + /* Better Font Rendering =========== */ + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.icon-ion-alert-circled:before { + content: "\f100"; +} + +.icon-ion-alert:before { + content: "\f101"; +} + +.icon-ion-android-add-circle:before { + content: "\f359"; +} + +.icon-ion-android-add:before { + content: "\f2c7"; +} + +.icon-ion-android-alarm-clock:before { + content: "\f35a"; +} + +.icon-ion-android-alert:before { + content: "\f35b"; +} + +.icon-ion-android-apps:before { + content: "\f35c"; +} + +.icon-ion-android-archive:before { + content: "\f2c9"; +} + +.icon-ion-android-arrow-back:before { + content: "\f2ca"; +} + +.icon-ion-android-arrow-down:before { + content: "\f35d"; +} + +.icon-ion-android-arrow-dropdown-circle:before { + content: "\f35e"; +} + +.icon-ion-android-arrow-dropdown:before { + content: "\f35f"; +} + +.icon-ion-android-arrow-dropleft-circle:before { + content: "\f360"; +} + +.icon-ion-android-arrow-dropleft:before { + content: "\f361"; +} + +.icon-ion-android-arrow-dropright-circle:before { + content: "\f362"; +} + +.icon-ion-android-arrow-dropright:before { + content: "\f363"; +} + +.icon-ion-android-arrow-dropup-circle:before { + content: "\f364"; +} + +.icon-ion-android-arrow-dropup:before { + content: "\f365"; +} + +.icon-ion-android-arrow-forward:before { + content: "\f30f"; +} + +.icon-ion-android-arrow-up:before { + content: "\f366"; +} + +.icon-ion-android-attach:before { + content: "\f367"; +} + +.icon-ion-android-bar:before { + content: "\f368"; +} + +.icon-ion-android-bicycle:before { + content: "\f369"; +} + +.icon-ion-android-boat:before { + content: "\f36a"; +} + +.icon-ion-android-bookmark:before { + content: "\f36b"; +} + +.icon-ion-android-bulb:before { + content: "\f36c"; +} + +.icon-ion-android-bus:before { + content: "\f36d"; +} + +.icon-ion-android-calendar:before { + content: "\f2d1"; +} + +.icon-ion-android-call:before { + content: "\f2d2"; +} + +.icon-ion-android-camera:before { + content: "\f2d3"; +} + +.icon-ion-android-cancel:before { + content: "\f36e"; +} + +.icon-ion-android-car:before { + content: "\f36f"; +} + +.icon-ion-android-cart:before { + content: "\f370"; +} + +.icon-ion-android-chat:before { + content: "\f2d4"; +} + +.icon-ion-android-checkbox-blank:before { + content: "\f371"; +} + +.icon-ion-android-checkbox-outline-blank:before { + content: "\f372"; +} + +.icon-ion-android-checkbox-outline:before { + content: "\f373"; +} + +.icon-ion-android-checkbox:before { + content: "\f374"; +} + +.icon-ion-android-checkmark-circle:before { + content: "\f375"; +} + +.icon-ion-android-clipboard:before { + content: "\f376"; +} + +.icon-ion-android-close:before { + content: "\f2d7"; +} + +.icon-ion-android-cloud-circle:before { + content: "\f377"; +} + +.icon-ion-android-cloud-done:before { + content: "\f378"; +} + +.icon-ion-android-cloud-outline:before { + content: "\f379"; +} + +.icon-ion-android-cloud:before { + content: "\f37a"; +} + +.icon-ion-android-color-palette:before { + content: "\f37b"; +} + +.icon-ion-android-compass:before { + content: "\f37c"; +} + +.icon-ion-android-contact:before { + content: "\f2d8"; +} + +.icon-ion-android-contacts:before { + content: "\f2d9"; +} + +.icon-ion-android-contract:before { + content: "\f37d"; +} + +.icon-ion-android-create:before { + content: "\f37e"; +} + +.icon-ion-android-delete:before { + content: "\f37f"; +} + +.icon-ion-android-desktop:before { + content: "\f380"; +} + +.icon-ion-android-document:before { + content: "\f381"; +} + +.icon-ion-android-done-all:before { + content: "\f382"; +} + +.icon-ion-android-done:before { + content: "\f383"; +} + +.icon-ion-android-download:before { + content: "\f2dd"; +} + +.icon-ion-android-drafts:before { + content: "\f384"; +} + +.icon-ion-android-exit:before { + content: "\f385"; +} + +.icon-ion-android-expand:before { + content: "\f386"; +} + +.icon-ion-android-favorite-outline:before { + content: "\f387"; +} + +.icon-ion-android-favorite:before { + content: "\f388"; +} + +.icon-ion-android-film:before { + content: "\f389"; +} + +.icon-ion-android-folder-open:before { + content: "\f38a"; +} + +.icon-ion-android-folder:before { + content: "\f2e0"; +} + +.icon-ion-android-funnel:before { + content: "\f38b"; +} + +.icon-ion-android-globe:before { + content: "\f38c"; +} + +.icon-ion-android-hand:before { + content: "\f2e3"; +} + +.icon-ion-android-hangout:before { + content: "\f38d"; +} + +.icon-ion-android-happy:before { + content: "\f38e"; +} + +.icon-ion-android-home:before { + content: "\f38f"; +} + +.icon-ion-android-image:before { + content: "\f2e4"; +} + +.icon-ion-android-laptop:before { + content: "\f390"; +} + +.icon-ion-android-list:before { + content: "\f391"; +} + +.icon-ion-android-locate:before { + content: "\f2e9"; +} + +.icon-ion-android-lock:before { + content: "\f392"; +} + +.icon-ion-android-mail:before { + content: "\f2eb"; +} + +.icon-ion-android-map:before { + content: "\f393"; +} + +.icon-ion-android-menu:before { + content: "\f394"; +} + +.icon-ion-android-microphone-off:before { + content: "\f395"; +} + +.icon-ion-android-microphone:before { + content: "\f2ec"; +} + +.icon-ion-android-more-horizontal:before { + content: "\f396"; +} + +.icon-ion-android-more-vertical:before { + content: "\f397"; +} + +.icon-ion-android-navigate:before { + content: "\f398"; +} + +.icon-ion-android-notifications-none:before { + content: "\f399"; +} + +.icon-ion-android-notifications-off:before { + content: "\f39a"; +} + +.icon-ion-android-notifications:before { + content: "\f39b"; +} + +.icon-ion-android-open:before { + content: "\f39c"; +} + +.icon-ion-android-options:before { + content: "\f39d"; +} + +.icon-ion-android-people:before { + content: "\f39e"; +} + +.icon-ion-android-person-add:before { + content: "\f39f"; +} + +.icon-ion-android-person:before { + content: "\f3a0"; +} + +.icon-ion-android-phone-landscape:before { + content: "\f3a1"; +} + +.icon-ion-android-phone-portrait:before { + content: "\f3a2"; +} + +.icon-ion-android-pin:before { + content: "\f3a3"; +} + +.icon-ion-android-plane:before { + content: "\f3a4"; +} + +.icon-ion-android-playstore:before { + content: "\f2f0"; +} + +.icon-ion-android-print:before { + content: "\f3a5"; +} + +.icon-ion-android-radio-button-off:before { + content: "\f3a6"; +} + +.icon-ion-android-radio-button-on:before { + content: "\f3a7"; +} + +.icon-ion-android-refresh:before { + content: "\f3a8"; +} + +.icon-ion-android-remove-circle:before { + content: "\f3a9"; +} + +.icon-ion-android-remove:before { + content: "\f2f4"; +} + +.icon-ion-android-restaurant:before { + content: "\f3aa"; +} + +.icon-ion-android-sad:before { + content: "\f3ab"; +} + +.icon-ion-android-search:before { + content: "\f2f5"; +} + +.icon-ion-android-send:before { + content: "\f2f6"; +} + +.icon-ion-android-settings:before { + content: "\f2f7"; +} + +.icon-ion-android-share-alt:before { + content: "\f3ac"; +} + +.icon-ion-android-share:before { + content: "\f2f8"; +} + +.icon-ion-android-star-half:before { + content: "\f3ad"; +} + +.icon-ion-android-star-outline:before { + content: "\f3ae"; +} + +.icon-ion-android-star:before { + content: "\f2fc"; +} + +.icon-ion-android-stopwatch:before { + content: "\f2fd"; +} + +.icon-ion-android-subway:before { + content: "\f3af"; +} + +.icon-ion-android-sunny:before { + content: "\f3b0"; +} + +.icon-ion-android-sync:before { + content: "\f3b1"; +} + +.icon-ion-android-textsms:before { + content: "\f3b2"; +} + +.icon-ion-android-time:before { + content: "\f3b3"; +} + +.icon-ion-android-train:before { + content: "\f3b4"; +} + +.icon-ion-android-unlock:before { + content: "\f3b5"; +} + +.icon-ion-android-upload:before { + content: "\f3b6"; +} + +.icon-ion-android-volume-down:before { + content: "\f3b7"; +} + +.icon-ion-android-volume-mute:before { + content: "\f3b8"; +} + +.icon-ion-android-volume-off:before { + content: "\f3b9"; +} + +.icon-ion-android-volume-up:before { + content: "\f3ba"; +} + +.icon-ion-android-walk:before { + content: "\f3bb"; +} + +.icon-ion-android-warning:before { + content: "\f3bc"; +} + +.icon-ion-android-watch:before { + content: "\f3bd"; +} + +.icon-ion-android-wifi:before { + content: "\f305"; +} + +.icon-ion-aperture:before { + content: "\f313"; +} + +.icon-ion-archive:before { + content: "\f102"; +} + +.icon-ion-arrow-down-a:before { + content: "\f103"; +} + +.icon-ion-arrow-down-b:before { + content: "\f104"; +} + +.icon-ion-arrow-down-c:before { + content: "\f105"; +} + +.icon-ion-arrow-expand:before { + content: "\f25e"; +} + +.icon-ion-arrow-graph-down-left:before { + content: "\f25f"; +} + +.icon-ion-arrow-graph-down-right:before { + content: "\f260"; +} + +.icon-ion-arrow-graph-up-left:before { + content: "\f261"; +} + +.icon-ion-arrow-graph-up-right:before { + content: "\f262"; +} + +.icon-ion-arrow-left-a:before { + content: "\f106"; +} + +.icon-ion-arrow-left-b:before { + content: "\f107"; +} + +.icon-ion-arrow-left-c:before { + content: "\f108"; +} + +.icon-ion-arrow-move:before { + content: "\f263"; +} + +.icon-ion-arrow-resize:before { + content: "\f264"; +} + +.icon-ion-arrow-return-left:before { + content: "\f265"; +} + +.icon-ion-arrow-return-right:before { + content: "\f266"; +} + +.icon-ion-arrow-right-a:before { + content: "\f109"; +} + +.icon-ion-arrow-right-b:before { + content: "\f10a"; +} + +.icon-ion-arrow-right-c:before { + content: "\f10b"; +} + +.icon-ion-arrow-shrink:before { + content: "\f267"; +} + +.icon-ion-arrow-swap:before { + content: "\f268"; +} + +.icon-ion-arrow-up-a:before { + content: "\f10c"; +} + +.icon-ion-arrow-up-b:before { + content: "\f10d"; +} + +.icon-ion-arrow-up-c:before { + content: "\f10e"; +} + +.icon-ion-asterisk:before { + content: "\f314"; +} + +.icon-ion-at:before { + content: "\f10f"; +} + +.icon-ion-backspace-outline:before { + content: "\f3be"; +} + +.icon-ion-backspace:before { + content: "\f3bf"; +} + +.icon-ion-bag:before { + content: "\f110"; +} + +.icon-ion-battery-charging:before { + content: "\f111"; +} + +.icon-ion-battery-empty:before { + content: "\f112"; +} + +.icon-ion-battery-full:before { + content: "\f113"; +} + +.icon-ion-battery-half:before { + content: "\f114"; +} + +.icon-ion-battery-low:before { + content: "\f115"; +} + +.icon-ion-beaker:before { + content: "\f269"; +} + +.icon-ion-beer:before { + content: "\f26a"; +} + +.icon-ion-bluetooth:before { + content: "\f116"; +} + +.icon-ion-bonfire:before { + content: "\f315"; +} + +.icon-ion-bookmark:before { + content: "\f26b"; +} + +.icon-ion-bowtie:before { + content: "\f3c0"; +} + +.icon-ion-briefcase:before { + content: "\f26c"; +} + +.icon-ion-bug:before { + content: "\f2be"; +} + +.icon-ion-calculator:before { + content: "\f26d"; +} + +.icon-ion-calendar:before { + content: "\f117"; +} + +.icon-ion-camera:before { + content: "\f118"; +} + +.icon-ion-card:before { + content: "\f119"; +} + +.icon-ion-cash:before { + content: "\f316"; +} + +.icon-ion-chatbox-working:before { + content: "\f11a"; +} + +.icon-ion-chatbox:before { + content: "\f11b"; +} + +.icon-ion-chatboxes:before { + content: "\f11c"; +} + +.icon-ion-chatbubble-working:before { + content: "\f11d"; +} + +.icon-ion-chatbubble:before { + content: "\f11e"; +} + +.icon-ion-chatbubbles:before { + content: "\f11f"; +} + +.icon-ion-checkmark-circled:before { + content: "\f120"; +} + +.icon-ion-checkmark-round:before { + content: "\f121"; +} + +.icon-ion-checkmark:before { + content: "\f122"; +} + +.icon-ion-chevron-down:before { + content: "\f123"; +} + +.icon-ion-chevron-left:before { + content: "\f124"; +} + +.icon-ion-chevron-right:before { + content: "\f125"; +} + +.icon-ion-chevron-up:before { + content: "\f126"; +} + +.icon-ion-clipboard:before { + content: "\f127"; +} + +.icon-ion-clock:before { + content: "\f26e"; +} + +.icon-ion-close-circled:before { + content: "\f128"; +} + +.icon-ion-close-round:before { + content: "\f129"; +} + +.icon-ion-close:before { + content: "\f12a"; +} + +.icon-ion-closed-captioning:before { + content: "\f317"; +} + +.icon-ion-cloud:before { + content: "\f12b"; +} + +.icon-ion-code-download:before { + content: "\f26f"; +} + +.icon-ion-code-working:before { + content: "\f270"; +} + +.icon-ion-code:before { + content: "\f271"; +} + +.icon-ion-coffee:before { + content: "\f272"; +} + +.icon-ion-compass:before { + content: "\f273"; +} + +.icon-ion-compose:before { + content: "\f12c"; +} + +.icon-ion-connection-bars:before { + content: "\f274"; +} + +.icon-ion-contrast:before { + content: "\f275"; +} + +.icon-ion-crop:before { + content: "\f3c1"; +} + +.icon-ion-cube:before { + content: "\f318"; +} + +.icon-ion-disc:before { + content: "\f12d"; +} + +.icon-ion-document-text:before { + content: "\f12e"; +} + +.icon-ion-document:before { + content: "\f12f"; +} + +.icon-ion-drag:before { + content: "\f130"; +} + +.icon-ion-earth:before { + content: "\f276"; +} + +.icon-ion-easel:before { + content: "\f3c2"; +} + +.icon-ion-edit:before { + content: "\f2bf"; +} + +.icon-ion-egg:before { + content: "\f277"; +} + +.icon-ion-eject:before { + content: "\f131"; +} + +.icon-ion-email-unread:before { + content: "\f3c3"; +} + +.icon-ion-email:before { + content: "\f132"; +} + +.icon-ion-erlenmeyer-flask-bubbles:before { + content: "\f3c4"; +} + +.icon-ion-erlenmeyer-flask:before { + content: "\f3c5"; +} + +.icon-ion-eye-disabled:before { + content: "\f306"; +} + +.icon-ion-eye:before { + content: "\f133"; +} + +.icon-ion-female:before { + content: "\f278"; +} + +.icon-ion-filing:before { + content: "\f134"; +} + +.icon-ion-film-marker:before { + content: "\f135"; +} + +.icon-ion-fireball:before { + content: "\f319"; +} + +.icon-ion-flag:before { + content: "\f279"; +} + +.icon-ion-flame:before { + content: "\f31a"; +} + +.icon-ion-flash-off:before { + content: "\f136"; +} + +.icon-ion-flash:before { + content: "\f137"; +} + +.icon-ion-folder:before { + content: "\f139"; +} + +.icon-ion-fork-repo:before { + content: "\f2c0"; +} + +.icon-ion-fork:before { + content: "\f27a"; +} + +.icon-ion-forward:before { + content: "\f13a"; +} + +.icon-ion-funnel:before { + content: "\f31b"; +} + +.icon-ion-gear-a:before { + content: "\f13d"; +} + +.icon-ion-gear-b:before { + content: "\f13e"; +} + +.icon-ion-grid:before { + content: "\f13f"; +} + +.icon-ion-hammer:before { + content: "\f27b"; +} + +.icon-ion-happy-outline:before { + content: "\f3c6"; +} + +.icon-ion-happy:before { + content: "\f31c"; +} + +.icon-ion-headphone:before { + content: "\f140"; +} + +.icon-ion-heart-broken:before { + content: "\f31d"; +} + +.icon-ion-heart:before { + content: "\f141"; +} + +.icon-ion-help-buoy:before { + content: "\f27c"; +} + +.icon-ion-help-circled:before { + content: "\f142"; +} + +.icon-ion-help:before { + content: "\f143"; +} + +.icon-ion-home:before { + content: "\f144"; +} + +.icon-ion-icecream:before { + content: "\f27d"; +} + +.icon-ion-image:before { + content: "\f147"; +} + +.icon-ion-images:before { + content: "\f148"; +} + +.icon-ion-information-circled:before { + content: "\f149"; +} + +.icon-ion-information:before { + content: "\f14a"; +} + +.icon-ion-ionic:before { + content: "\f14b"; +} + +.icon-ion-ios-alarm-outline:before { + content: "\f3c7"; +} + +.icon-ion-ios-alarm:before { + content: "\f3c8"; +} + +.icon-ion-ios-albums-outline:before { + content: "\f3c9"; +} + +.icon-ion-ios-albums:before { + content: "\f3ca"; +} + +.icon-ion-ios-americanfootball-outline:before { + content: "\f3cb"; +} + +.icon-ion-ios-americanfootball:before { + content: "\f3cc"; +} + +.icon-ion-ios-analytics-outline:before { + content: "\f3cd"; +} + +.icon-ion-ios-analytics:before { + content: "\f3ce"; +} + +.icon-ion-ios-arrow-back:before { + content: "\f3cf"; +} + +.icon-ion-ios-arrow-down:before { + content: "\f3d0"; +} + +.icon-ion-ios-arrow-forward:before { + content: "\f3d1"; +} + +.icon-ion-ios-arrow-left:before { + content: "\f3d2"; +} + +.icon-ion-ios-arrow-right:before { + content: "\f3d3"; +} + +.icon-ion-ios-arrow-thin-down:before { + content: "\f3d4"; +} + +.icon-ion-ios-arrow-thin-left:before { + content: "\f3d5"; +} + +.icon-ion-ios-arrow-thin-right:before { + content: "\f3d6"; +} + +.icon-ion-ios-arrow-thin-up:before { + content: "\f3d7"; +} + +.icon-ion-ios-arrow-up:before { + content: "\f3d8"; +} + +.icon-ion-ios-at-outline:before { + content: "\f3d9"; +} + +.icon-ion-ios-at:before { + content: "\f3da"; +} + +.icon-ion-ios-barcode-outline:before { + content: "\f3db"; +} + +.icon-ion-ios-barcode:before { + content: "\f3dc"; +} + +.icon-ion-ios-baseball-outline:before { + content: "\f3dd"; +} + +.icon-ion-ios-baseball:before { + content: "\f3de"; +} + +.icon-ion-ios-basketball-outline:before { + content: "\f3df"; +} + +.icon-ion-ios-basketball:before { + content: "\f3e0"; +} + +.icon-ion-ios-bell-outline:before { + content: "\f3e1"; +} + +.icon-ion-ios-bell:before { + content: "\f3e2"; +} + +.icon-ion-ios-body-outline:before { + content: "\f3e3"; +} + +.icon-ion-ios-body:before { + content: "\f3e4"; +} + +.icon-ion-ios-bolt-outline:before { + content: "\f3e5"; +} + +.icon-ion-ios-bolt:before { + content: "\f3e6"; +} + +.icon-ion-ios-book-outline:before { + content: "\f3e7"; +} + +.icon-ion-ios-book:before { + content: "\f3e8"; +} + +.icon-ion-ios-bookmarks-outline:before { + content: "\f3e9"; +} + +.icon-ion-ios-bookmarks:before { + content: "\f3ea"; +} + +.icon-ion-ios-box-outline:before { + content: "\f3eb"; +} + +.icon-ion-ios-box:before { + content: "\f3ec"; +} + +.icon-ion-ios-briefcase-outline:before { + content: "\f3ed"; +} + +.icon-ion-ios-briefcase:before { + content: "\f3ee"; +} + +.icon-ion-ios-browsers-outline:before { + content: "\f3ef"; +} + +.icon-ion-ios-browsers:before { + content: "\f3f0"; +} + +.icon-ion-ios-calculator-outline:before { + content: "\f3f1"; +} + +.icon-ion-ios-calculator:before { + content: "\f3f2"; +} + +.icon-ion-ios-calendar-outline:before { + content: "\f3f3"; +} + +.icon-ion-ios-calendar:before { + content: "\f3f4"; +} + +.icon-ion-ios-camera-outline:before { + content: "\f3f5"; +} + +.icon-ion-ios-camera:before { + content: "\f3f6"; +} + +.icon-ion-ios-cart-outline:before { + content: "\f3f7"; +} + +.icon-ion-ios-cart:before { + content: "\f3f8"; +} + +.icon-ion-ios-chatboxes-outline:before { + content: "\f3f9"; +} + +.icon-ion-ios-chatboxes:before { + content: "\f3fa"; +} + +.icon-ion-ios-chatbubble-outline:before { + content: "\f3fb"; +} + +.icon-ion-ios-chatbubble:before { + content: "\f3fc"; +} + +.icon-ion-ios-checkmark-empty:before { + content: "\f3fd"; +} + +.icon-ion-ios-checkmark-outline:before { + content: "\f3fe"; +} + +.icon-ion-ios-checkmark:before { + content: "\f3ff"; +} + +.icon-ion-ios-circle-filled:before { + content: "\f400"; +} + +.icon-ion-ios-circle-outline:before { + content: "\f401"; +} + +.icon-ion-ios-clock-outline:before { + content: "\f402"; +} + +.icon-ion-ios-clock:before { + content: "\f403"; +} + +.icon-ion-ios-close-empty:before { + content: "\f404"; +} + +.icon-ion-ios-close-outline:before { + content: "\f405"; +} + +.icon-ion-ios-close:before { + content: "\f406"; +} + +.icon-ion-ios-cloud-download-outline:before { + content: "\f407"; +} + +.icon-ion-ios-cloud-download:before { + content: "\f408"; +} + +.icon-ion-ios-cloud-outline:before { + content: "\f409"; +} + +.icon-ion-ios-cloud-upload-outline:before { + content: "\f40a"; +} + +.icon-ion-ios-cloud-upload:before { + content: "\f40b"; +} + +.icon-ion-ios-cloud:before { + content: "\f40c"; +} + +.icon-ion-ios-cloudy-night-outline:before { + content: "\f40d"; +} + +.icon-ion-ios-cloudy-night:before { + content: "\f40e"; +} + +.icon-ion-ios-cloudy-outline:before { + content: "\f40f"; +} + +.icon-ion-ios-cloudy:before { + content: "\f410"; +} + +.icon-ion-ios-cog-outline:before { + content: "\f411"; +} + +.icon-ion-ios-cog:before { + content: "\f412"; +} + +.icon-ion-ios-color-filter-outline:before { + content: "\f413"; +} + +.icon-ion-ios-color-filter:before { + content: "\f414"; +} + +.icon-ion-ios-color-wand-outline:before { + content: "\f415"; +} + +.icon-ion-ios-color-wand:before { + content: "\f416"; +} + +.icon-ion-ios-compose-outline:before { + content: "\f417"; +} + +.icon-ion-ios-compose:before { + content: "\f418"; +} + +.icon-ion-ios-contact-outline:before { + content: "\f419"; +} + +.icon-ion-ios-contact:before { + content: "\f41a"; +} + +.icon-ion-ios-copy-outline:before { + content: "\f41b"; +} + +.icon-ion-ios-copy:before { + content: "\f41c"; +} + +.icon-ion-ios-crop-strong:before { + content: "\f41d"; +} + +.icon-ion-ios-crop:before { + content: "\f41e"; +} + +.icon-ion-ios-download-outline:before { + content: "\f41f"; +} + +.icon-ion-ios-download:before { + content: "\f420"; +} + +.icon-ion-ios-drag:before { + content: "\f421"; +} + +.icon-ion-ios-email-outline:before { + content: "\f422"; +} + +.icon-ion-ios-email:before { + content: "\f423"; +} + +.icon-ion-ios-eye-outline:before { + content: "\f424"; +} + +.icon-ion-ios-eye:before { + content: "\f425"; +} + +.icon-ion-ios-fastforward-outline:before { + content: "\f426"; +} + +.icon-ion-ios-fastforward:before { + content: "\f427"; +} + +.icon-ion-ios-filing-outline:before { + content: "\f428"; +} + +.icon-ion-ios-filing:before { + content: "\f429"; +} + +.icon-ion-ios-film-outline:before { + content: "\f42a"; +} + +.icon-ion-ios-film:before { + content: "\f42b"; +} + +.icon-ion-ios-flag-outline:before { + content: "\f42c"; +} + +.icon-ion-ios-flag:before { + content: "\f42d"; +} + +.icon-ion-ios-flame-outline:before { + content: "\f42e"; +} + +.icon-ion-ios-flame:before { + content: "\f42f"; +} + +.icon-ion-ios-flask-outline:before { + content: "\f430"; +} + +.icon-ion-ios-flask:before { + content: "\f431"; +} + +.icon-ion-ios-flower-outline:before { + content: "\f432"; +} + +.icon-ion-ios-flower:before { + content: "\f433"; +} + +.icon-ion-ios-folder-outline:before { + content: "\f434"; +} + +.icon-ion-ios-folder:before { + content: "\f435"; +} + +.icon-ion-ios-football-outline:before { + content: "\f436"; +} + +.icon-ion-ios-football:before { + content: "\f437"; +} + +.icon-ion-ios-game-controller-a-outline:before { + content: "\f438"; +} + +.icon-ion-ios-game-controller-a:before { + content: "\f439"; +} + +.icon-ion-ios-game-controller-b-outline:before { + content: "\f43a"; +} + +.icon-ion-ios-game-controller-b:before { + content: "\f43b"; +} + +.icon-ion-ios-gear-outline:before { + content: "\f43c"; +} + +.icon-ion-ios-gear:before { + content: "\f43d"; +} + +.icon-ion-ios-glasses-outline:before { + content: "\f43e"; +} + +.icon-ion-ios-glasses:before { + content: "\f43f"; +} + +.icon-ion-ios-grid-view-outline:before { + content: "\f440"; +} + +.icon-ion-ios-grid-view:before { + content: "\f441"; +} + +.icon-ion-ios-heart-outline:before { + content: "\f442"; +} + +.icon-ion-ios-heart:before { + content: "\f443"; +} + +.icon-ion-ios-help-empty:before { + content: "\f444"; +} + +.icon-ion-ios-help-outline:before { + content: "\f445"; +} + +.icon-ion-ios-help:before { + content: "\f446"; +} + +.icon-ion-ios-home-outline:before { + content: "\f447"; +} + +.icon-ion-ios-home:before { + content: "\f448"; +} + +.icon-ion-ios-infinite-outline:before { + content: "\f449"; +} + +.icon-ion-ios-infinite:before { + content: "\f44a"; +} + +.icon-ion-ios-information-empty:before { + content: "\f44b"; +} + +.icon-ion-ios-information-outline:before { + content: "\f44c"; +} + +.icon-ion-ios-information:before { + content: "\f44d"; +} + +.icon-ion-ios-ionic-outline:before { + content: "\f44e"; +} + +.icon-ion-ios-keypad-outline:before { + content: "\f44f"; +} + +.icon-ion-ios-keypad:before { + content: "\f450"; +} + +.icon-ion-ios-lightbulb-outline:before { + content: "\f451"; +} + +.icon-ion-ios-lightbulb:before { + content: "\f452"; +} + +.icon-ion-ios-list-outline:before { + content: "\f453"; +} + +.icon-ion-ios-list:before { + content: "\f454"; +} + +.icon-ion-ios-location-outline:before { + content: "\f455"; +} + +.icon-ion-ios-location:before { + content: "\f456"; +} + +.icon-ion-ios-locked-outline:before { + content: "\f457"; +} + +.icon-ion-ios-locked:before { + content: "\f458"; +} + +.icon-ion-ios-loop-strong:before { + content: "\f459"; +} + +.icon-ion-ios-loop:before { + content: "\f45a"; +} + +.icon-ion-ios-medical-outline:before { + content: "\f45b"; +} + +.icon-ion-ios-medical:before { + content: "\f45c"; +} + +.icon-ion-ios-medkit-outline:before { + content: "\f45d"; +} + +.icon-ion-ios-medkit:before { + content: "\f45e"; +} + +.icon-ion-ios-mic-off:before { + content: "\f45f"; +} + +.icon-ion-ios-mic-outline:before { + content: "\f460"; +} + +.icon-ion-ios-mic:before { + content: "\f461"; +} + +.icon-ion-ios-minus-empty:before { + content: "\f462"; +} + +.icon-ion-ios-minus-outline:before { + content: "\f463"; +} + +.icon-ion-ios-minus:before { + content: "\f464"; +} + +.icon-ion-ios-monitor-outline:before { + content: "\f465"; +} + +.icon-ion-ios-monitor:before { + content: "\f466"; +} + +.icon-ion-ios-moon-outline:before { + content: "\f467"; +} + +.icon-ion-ios-moon:before { + content: "\f468"; +} + +.icon-ion-ios-more-outline:before { + content: "\f469"; +} + +.icon-ion-ios-more:before { + content: "\f46a"; +} + +.icon-ion-ios-musical-note:before { + content: "\f46b"; +} + +.icon-ion-ios-musical-notes:before { + content: "\f46c"; +} + +.icon-ion-ios-navigate-outline:before { + content: "\f46d"; +} + +.icon-ion-ios-navigate:before { + content: "\f46e"; +} + +.icon-ion-ios-nutrition-outline:before { + content: "\f46f"; +} + +.icon-ion-ios-nutrition:before { + content: "\f470"; +} + +.icon-ion-ios-paper-outline:before { + content: "\f471"; +} + +.icon-ion-ios-paper:before { + content: "\f472"; +} + +.icon-ion-ios-paperplane-outline:before { + content: "\f473"; +} + +.icon-ion-ios-paperplane:before { + content: "\f474"; +} + +.icon-ion-ios-partlysunny-outline:before { + content: "\f475"; +} + +.icon-ion-ios-partlysunny:before { + content: "\f476"; +} + +.icon-ion-ios-pause-outline:before { + content: "\f477"; +} + +.icon-ion-ios-pause:before { + content: "\f478"; +} + +.icon-ion-ios-paw-outline:before { + content: "\f479"; +} + +.icon-ion-ios-paw:before { + content: "\f47a"; +} + +.icon-ion-ios-people-outline:before { + content: "\f47b"; +} + +.icon-ion-ios-people:before { + content: "\f47c"; +} + +.icon-ion-ios-person-outline:before { + content: "\f47d"; +} + +.icon-ion-ios-person:before { + content: "\f47e"; +} + +.icon-ion-ios-personadd-outline:before { + content: "\f47f"; +} + +.icon-ion-ios-personadd:before { + content: "\f480"; +} + +.icon-ion-ios-photos-outline:before { + content: "\f481"; +} + +.icon-ion-ios-photos:before { + content: "\f482"; +} + +.icon-ion-ios-pie-outline:before { + content: "\f483"; +} + +.icon-ion-ios-pie:before { + content: "\f484"; +} + +.icon-ion-ios-pint-outline:before { + content: "\f485"; +} + +.icon-ion-ios-pint:before { + content: "\f486"; +} + +.icon-ion-ios-play-outline:before { + content: "\f487"; +} + +.icon-ion-ios-play:before { + content: "\f488"; +} + +.icon-ion-ios-plus-empty:before { + content: "\f489"; +} + +.icon-ion-ios-plus-outline:before { + content: "\f48a"; +} + +.icon-ion-ios-plus:before { + content: "\f48b"; +} + +.icon-ion-ios-pricetag-outline:before { + content: "\f48c"; +} + +.icon-ion-ios-pricetag:before { + content: "\f48d"; +} + +.icon-ion-ios-pricetags-outline:before { + content: "\f48e"; +} + +.icon-ion-ios-pricetags:before { + content: "\f48f"; +} + +.icon-ion-ios-printer-outline:before { + content: "\f490"; +} + +.icon-ion-ios-printer:before { + content: "\f491"; +} + +.icon-ion-ios-pulse-strong:before { + content: "\f492"; +} + +.icon-ion-ios-pulse:before { + content: "\f493"; +} + +.icon-ion-ios-rainy-outline:before { + content: "\f494"; +} + +.icon-ion-ios-rainy:before { + content: "\f495"; +} + +.icon-ion-ios-recording-outline:before { + content: "\f496"; +} + +.icon-ion-ios-recording:before { + content: "\f497"; +} + +.icon-ion-ios-redo-outline:before { + content: "\f498"; +} + +.icon-ion-ios-redo:before { + content: "\f499"; +} + +.icon-ion-ios-refresh-empty:before { + content: "\f49a"; +} + +.icon-ion-ios-refresh-outline:before { + content: "\f49b"; +} + +.icon-ion-ios-refresh:before { + content: "\f49c"; +} + +.icon-ion-ios-reload:before { + content: "\f49d"; +} + +.icon-ion-ios-reverse-camera-outline:before { + content: "\f49e"; +} + +.icon-ion-ios-reverse-camera:before { + content: "\f49f"; +} + +.icon-ion-ios-rewind-outline:before { + content: "\f4a0"; +} + +.icon-ion-ios-rewind:before { + content: "\f4a1"; +} + +.icon-ion-ios-rose-outline:before { + content: "\f4a2"; +} + +.icon-ion-ios-rose:before { + content: "\f4a3"; +} + +.icon-ion-ios-search-strong:before { + content: "\f4a4"; +} + +.icon-ion-ios-search:before { + content: "\f4a5"; +} + +.icon-ion-ios-settings-strong:before { + content: "\f4a6"; +} + +.icon-ion-ios-settings:before { + content: "\f4a7"; +} + +.icon-ion-ios-shuffle-strong:before { + content: "\f4a8"; +} + +.icon-ion-ios-shuffle:before { + content: "\f4a9"; +} + +.icon-ion-ios-skipbackward-outline:before { + content: "\f4aa"; +} + +.icon-ion-ios-skipbackward:before { + content: "\f4ab"; +} + +.icon-ion-ios-skipforward-outline:before { + content: "\f4ac"; +} + +.icon-ion-ios-skipforward:before { + content: "\f4ad"; +} + +.icon-ion-ios-snowy:before { + content: "\f4ae"; +} + +.icon-ion-ios-speedometer-outline:before { + content: "\f4af"; +} + +.icon-ion-ios-speedometer:before { + content: "\f4b0"; +} + +.icon-ion-ios-star-half:before { + content: "\f4b1"; +} + +.icon-ion-ios-star-outline:before { + content: "\f4b2"; +} + +.icon-ion-ios-star:before { + content: "\f4b3"; +} + +.icon-ion-ios-stopwatch-outline:before { + content: "\f4b4"; +} + +.icon-ion-ios-stopwatch:before { + content: "\f4b5"; +} + +.icon-ion-ios-sunny-outline:before { + content: "\f4b6"; +} + +.icon-ion-ios-sunny:before { + content: "\f4b7"; +} + +.icon-ion-ios-telephone-outline:before { + content: "\f4b8"; +} + +.icon-ion-ios-telephone:before { + content: "\f4b9"; +} + +.icon-ion-ios-tennisball-outline:before { + content: "\f4ba"; +} + +.icon-ion-ios-tennisball:before { + content: "\f4bb"; +} + +.icon-ion-ios-thunderstorm-outline:before { + content: "\f4bc"; +} + +.icon-ion-ios-thunderstorm:before { + content: "\f4bd"; +} + +.icon-ion-ios-time-outline:before { + content: "\f4be"; +} + +.icon-ion-ios-time:before { + content: "\f4bf"; +} + +.icon-ion-ios-timer-outline:before { + content: "\f4c0"; +} + +.icon-ion-ios-timer:before { + content: "\f4c1"; +} + +.icon-ion-ios-toggle-outline:before { + content: "\f4c2"; +} + +.icon-ion-ios-toggle:before { + content: "\f4c3"; +} + +.icon-ion-ios-trash-outline:before { + content: "\f4c4"; +} + +.icon-ion-ios-trash:before { + content: "\f4c5"; +} + +.icon-ion-ios-undo-outline:before { + content: "\f4c6"; +} + +.icon-ion-ios-undo:before { + content: "\f4c7"; +} + +.icon-ion-ios-unlocked-outline:before { + content: "\f4c8"; +} + +.icon-ion-ios-unlocked:before { + content: "\f4c9"; +} + +.icon-ion-ios-upload-outline:before { + content: "\f4ca"; +} + +.icon-ion-ios-upload:before { + content: "\f4cb"; +} + +.icon-ion-ios-videocam-outline:before { + content: "\f4cc"; +} + +.icon-ion-ios-videocam:before { + content: "\f4cd"; +} + +.icon-ion-ios-volume-high:before { + content: "\f4ce"; +} + +.icon-ion-ios-volume-low:before { + content: "\f4cf"; +} + +.icon-ion-ios-wineglass-outline:before { + content: "\f4d0"; +} + +.icon-ion-ios-wineglass:before { + content: "\f4d1"; +} + +.icon-ion-ios-world-outline:before { + content: "\f4d2"; +} + +.icon-ion-ios-world:before { + content: "\f4d3"; +} + +.icon-ion-ipad:before { + content: "\f1f9"; +} + +.icon-ion-iphone:before { + content: "\f1fa"; +} + +.icon-ion-ipod:before { + content: "\f1fb"; +} + +.icon-ion-jet:before { + content: "\f295"; +} + +.icon-ion-key:before { + content: "\f296"; +} + +.icon-ion-knife:before { + content: "\f297"; +} + +.icon-ion-laptop:before { + content: "\f1fc"; +} + +.icon-ion-leaf:before { + content: "\f1fd"; +} + +.icon-ion-levels:before { + content: "\f298"; +} + +.icon-ion-lightbulb:before { + content: "\f299"; +} + +.icon-ion-link:before { + content: "\f1fe"; +} + +.icon-ion-load-a:before { + content: "\f29a"; +} + +.icon-ion-load-b:before { + content: "\f29b"; +} + +.icon-ion-load-c:before { + content: "\f29c"; +} + +.icon-ion-load-d:before { + content: "\f29d"; +} + +.icon-ion-location:before { + content: "\f1ff"; +} + +.icon-ion-lock-combination:before { + content: "\f4d4"; +} + +.icon-ion-locked:before { + content: "\f200"; +} + +.icon-ion-log-in:before { + content: "\f29e"; +} + +.icon-ion-log-out:before { + content: "\f29f"; +} + +.icon-ion-loop:before { + content: "\f201"; +} + +.icon-ion-magnet:before { + content: "\f2a0"; +} + +.icon-ion-male:before { + content: "\f2a1"; +} + +.icon-ion-man:before { + content: "\f202"; +} + +.icon-ion-map:before { + content: "\f203"; +} + +.icon-ion-medkit:before { + content: "\f2a2"; +} + +.icon-ion-merge:before { + content: "\f33f"; +} + +.icon-ion-mic-a:before { + content: "\f204"; +} + +.icon-ion-mic-b:before { + content: "\f205"; +} + +.icon-ion-mic-c:before { + content: "\f206"; +} + +.icon-ion-minus-circled:before { + content: "\f207"; +} + +.icon-ion-minus-round:before { + content: "\f208"; +} + +.icon-ion-minus:before { + content: "\f209"; +} + +.icon-ion-model-s:before { + content: "\f2c1"; +} + +.icon-ion-monitor:before { + content: "\f20a"; +} + +.icon-ion-more:before { + content: "\f20b"; +} + +.icon-ion-mouse:before { + content: "\f340"; +} + +.icon-ion-music-note:before { + content: "\f20c"; +} + +.icon-ion-navicon-round:before { + content: "\f20d"; +} + +.icon-ion-navicon:before { + content: "\f20e"; +} + +.icon-ion-navigate:before { + content: "\f2a3"; +} + +.icon-ion-network:before { + content: "\f341"; +} + +.icon-ion-no-smoking:before { + content: "\f2c2"; +} + +.icon-ion-nuclear:before { + content: "\f2a4"; +} + +.icon-ion-outlet:before { + content: "\f342"; +} + +.icon-ion-paintbrush:before { + content: "\f4d5"; +} + +.icon-ion-paintbucket:before { + content: "\f4d6"; +} + +.icon-ion-paper-airplane:before { + content: "\f2c3"; +} + +.icon-ion-paperclip:before { + content: "\f20f"; +} + +.icon-ion-pause:before { + content: "\f210"; +} + +.icon-ion-person-add:before { + content: "\f211"; +} + +.icon-ion-person-stalker:before { + content: "\f212"; +} + +.icon-ion-person:before { + content: "\f213"; +} + +.icon-ion-pie-graph:before { + content: "\f2a5"; +} + +.icon-ion-pin:before { + content: "\f2a6"; +} + +.icon-ion-pinpoint:before { + content: "\f2a7"; +} + +.icon-ion-pizza:before { + content: "\f2a8"; +} + +.icon-ion-plane:before { + content: "\f214"; +} + +.icon-ion-planet:before { + content: "\f343"; +} + +.icon-ion-play:before { + content: "\f215"; +} + +.icon-ion-playstation:before { + content: "\f30a"; +} + +.icon-ion-plus-circled:before { + content: "\f216"; +} + +.icon-ion-plus-round:before { + content: "\f217"; +} + +.icon-ion-plus:before { + content: "\f218"; +} + +.icon-ion-podium:before { + content: "\f344"; +} + +.icon-ion-pound:before { + content: "\f219"; +} + +.icon-ion-power:before { + content: "\f2a9"; +} + +.icon-ion-pricetag:before { + content: "\f2aa"; +} + +.icon-ion-pricetags:before { + content: "\f2ab"; +} + +.icon-ion-printer:before { + content: "\f21a"; +} + +.icon-ion-pull-request:before { + content: "\f345"; +} + +.icon-ion-qr-scanner:before { + content: "\f346"; +} + +.icon-ion-quote:before { + content: "\f347"; +} + +.icon-ion-radio-waves:before { + content: "\f2ac"; +} + +.icon-ion-record:before { + content: "\f21b"; +} + +.icon-ion-refresh:before { + content: "\f21c"; +} + +.icon-ion-reply-all:before { + content: "\f21d"; +} + +.icon-ion-reply:before { + content: "\f21e"; +} + +.icon-ion-ribbon-a:before { + content: "\f348"; +} + +.icon-ion-ribbon-b:before { + content: "\f349"; +} + +.icon-ion-sad-outline:before { + content: "\f4d7"; +} + +.icon-ion-sad:before { + content: "\f34a"; +} + +.icon-ion-scissors:before { + content: "\f34b"; +} + +.icon-ion-search:before { + content: "\f21f"; +} + +.icon-ion-settings:before { + content: "\f2ad"; +} + +.icon-ion-share:before { + content: "\f220"; +} + +.icon-ion-shuffle:before { + content: "\f221"; +} + +.icon-ion-skip-backward:before { + content: "\f222"; +} + +.icon-ion-skip-forward:before { + content: "\f223"; +} + +.icon-ion-social-android-outline:before { + content: "\f224"; +} + +.icon-ion-social-android:before { + content: "\f225"; +} + +.icon-ion-social-angular-outline:before { + content: "\f4d8"; +} + +.icon-ion-social-angular:before { + content: "\f4d9"; +} + +.icon-ion-social-apple-outline:before { + content: "\f226"; +} + +.icon-ion-social-apple:before { + content: "\f227"; +} + +.icon-ion-social-bitcoin-outline:before { + content: "\f2ae"; +} + +.icon-ion-social-bitcoin:before { + content: "\f2af"; +} + +.icon-ion-social-buffer-outline:before { + content: "\f228"; +} + +.icon-ion-social-buffer:before { + content: "\f229"; +} + +.icon-ion-social-chrome-outline:before { + content: "\f4da"; +} + +.icon-ion-social-chrome:before { + content: "\f4db"; +} + +.icon-ion-social-codepen-outline:before { + content: "\f4dc"; +} + +.icon-ion-social-codepen:before { + content: "\f4dd"; +} + +.icon-ion-social-css3-outline:before { + content: "\f4de"; +} + +.icon-ion-social-css3:before { + content: "\f4df"; +} + +.icon-ion-social-designernews-outline:before { + content: "\f22a"; +} + +.icon-ion-social-designernews:before { + content: "\f22b"; +} + +.icon-ion-social-dribbble-outline:before { + content: "\f22c"; +} + +.icon-ion-social-dribbble:before { + content: "\f22d"; +} + +.icon-ion-social-dropbox-outline:before { + content: "\f22e"; +} + +.icon-ion-social-dropbox:before { + content: "\f22f"; +} + +.icon-ion-social-euro-outline:before { + content: "\f4e0"; +} + +.icon-ion-social-euro:before { + content: "\f4e1"; +} + +.icon-ion-social-facebook-outline:before { + content: "\f230"; +} + +.icon-ion-social-facebook:before { + content: "\f231"; +} + +.icon-ion-social-foursquare-outline:before { + content: "\f34c"; +} + +.icon-ion-social-foursquare:before { + content: "\f34d"; +} + +.icon-ion-social-freebsd-devil:before { + content: "\f2c4"; +} + +.icon-ion-social-github-outline:before { + content: "\f232"; +} + +.icon-ion-social-github:before { + content: "\f233"; +} + +.icon-ion-social-google-outline:before { + content: "\f34e"; +} + +.icon-ion-social-google:before { + content: "\f34f"; +} + +.icon-ion-social-googleplus-outline:before { + content: "\f234"; +} + +.icon-ion-social-googleplus:before { + content: "\f235"; +} + +.icon-ion-social-hackernews-outline:before { + content: "\f236"; +} + +.icon-ion-social-hackernews:before { + content: "\f237"; +} + +.icon-ion-social-html5-outline:before { + content: "\f4e2"; +} + +.icon-ion-social-html5:before { + content: "\f4e3"; +} + +.icon-ion-social-instagram-outline:before { + content: "\f350"; +} + +.icon-ion-social-instagram:before { + content: "\f351"; +} + +.icon-ion-social-javascript-outline:before { + content: "\f4e4"; +} + +.icon-ion-social-javascript:before { + content: "\f4e5"; +} + +.icon-ion-social-linkedin-outline:before { + content: "\f238"; +} + +.icon-ion-social-linkedin:before { + content: "\f239"; +} + +.icon-ion-social-markdown:before { + content: "\f4e6"; +} + +.icon-ion-social-nodejs:before { + content: "\f4e7"; +} + +.icon-ion-social-octocat:before { + content: "\f4e8"; +} + +.icon-ion-social-pinterest-outline:before { + content: "\f2b0"; +} + +.icon-ion-social-pinterest:before { + content: "\f2b1"; +} + +.icon-ion-social-python:before { + content: "\f4e9"; +} + +.icon-ion-social-reddit-outline:before { + content: "\f23a"; +} + +.icon-ion-social-reddit:before { + content: "\f23b"; +} + +.icon-ion-social-rss-outline:before { + content: "\f23c"; +} + +.icon-ion-social-rss:before { + content: "\f23d"; +} + +.icon-ion-social-sass:before { + content: "\f4ea"; +} + +.icon-ion-social-skype-outline:before { + content: "\f23e"; +} + +.icon-ion-social-skype:before { + content: "\f23f"; +} + +.icon-ion-social-snapchat-outline:before { + content: "\f4eb"; +} + +.icon-ion-social-snapchat:before { + content: "\f4ec"; +} + +.icon-ion-social-tumblr-outline:before { + content: "\f240"; +} + +.icon-ion-social-tumblr:before { + content: "\f241"; +} + +.icon-ion-social-tux:before { + content: "\f2c5"; +} + +.icon-ion-social-twitch-outline:before { + content: "\f4ed"; +} + +.icon-ion-social-twitch:before { + content: "\f4ee"; +} + +.icon-ion-social-twitter-outline:before { + content: "\f242"; +} + +.icon-ion-social-twitter:before { + content: "\f243"; +} + +.icon-ion-social-usd-outline:before { + content: "\f352"; +} + +.icon-ion-social-usd:before { + content: "\f353"; +} + +.icon-ion-social-vimeo-outline:before { + content: "\f244"; +} + +.icon-ion-social-vimeo:before { + content: "\f245"; +} + +.icon-ion-social-whatsapp-outline:before { + content: "\f4ef"; +} + +.icon-ion-social-whatsapp:before { + content: "\f4f0"; +} + +.icon-ion-social-windows-outline:before { + content: "\f246"; +} + +.icon-ion-social-windows:before { + content: "\f247"; +} + +.icon-ion-social-wordpress-outline:before { + content: "\f248"; +} + +.icon-ion-social-wordpress:before { + content: "\f249"; +} + +.icon-ion-social-yahoo-outline:before { + content: "\f24a"; +} + +.icon-ion-social-yahoo:before { + content: "\f24b"; +} + +.icon-ion-social-yen-outline:before { + content: "\f4f1"; +} + +.icon-ion-social-yen:before { + content: "\f4f2"; +} + +.icon-ion-social-youtube-outline:before { + content: "\f24c"; +} + +.icon-ion-social-youtube:before { + content: "\f24d"; +} + +.icon-ion-soup-can-outline:before { + content: "\f4f3"; +} + +.icon-ion-soup-can:before { + content: "\f4f4"; +} + +.icon-ion-speakerphone:before { + content: "\f2b2"; +} + +.icon-ion-speedometer:before { + content: "\f2b3"; +} + +.icon-ion-spoon:before { + content: "\f2b4"; +} + +.icon-ion-star:before { + content: "\f24e"; +} + +.icon-ion-stats-bars:before { + content: "\f2b5"; +} + +.icon-ion-steam:before { + content: "\f30b"; +} + +.icon-ion-stop:before { + content: "\f24f"; +} + +.icon-ion-thermometer:before { + content: "\f2b6"; +} + +.icon-ion-thumbsdown:before { + content: "\f250"; +} + +.icon-ion-thumbsup:before { + content: "\f251"; +} + +.icon-ion-toggle-filled:before { + content: "\f354"; +} + +.icon-ion-toggle:before { + content: "\f355"; +} + +.icon-ion-transgender:before { + content: "\f4f5"; +} + +.icon-ion-trash-a:before { + content: "\f252"; +} + +.icon-ion-trash-b:before { + content: "\f253"; +} + +.icon-ion-trophy:before { + content: "\f356"; +} + +.icon-ion-tshirt-outline:before { + content: "\f4f6"; +} + +.icon-ion-tshirt:before { + content: "\f4f7"; +} + +.icon-ion-umbrella:before { + content: "\f2b7"; +} + +.icon-ion-university:before { + content: "\f357"; +} + +.icon-ion-unlocked:before { + content: "\f254"; +} + +.icon-ion-upload:before { + content: "\f255"; +} + +.icon-ion-usb:before { + content: "\f2b8"; +} + +.icon-ion-videocamera:before { + content: "\f256"; +} + +.icon-ion-volume-high:before { + content: "\f257"; +} + +.icon-ion-volume-low:before { + content: "\f258"; +} + +.icon-ion-volume-medium:before { + content: "\f259"; +} + +.icon-ion-volume-mute:before { + content: "\f25a"; +} + +.icon-ion-wand:before { + content: "\f358"; +} + +.icon-ion-waterdrop:before { + content: "\f25b"; +} + +.icon-ion-wifi:before { + content: "\f25c"; +} + +.icon-ion-wineglass:before { + content: "\f2b9"; +} + +.icon-ion-woman:before { + content: "\f25d"; +} + +.icon-ion-wrench:before { + content: "\f2ba"; +} + +.icon-ion-xbox:before { + content: "\f30c"; +} + +.logding { + width: 100%; + height: 100%; + position: absolute; + top: 0px; + left: 0px; + z-index: 99999; + background: rgba(0,0,0,0.5) +} + +.spinner { + width: 30px; + height: 30px; + + position: relative; + margin: 8px auto; +} + +.double-bounce1, .double-bounce2 { + width: 100%; + height: 100%; + border-radius: 50%; + background-color: #67CF22; + opacity: 0.6; + position: absolute; + top: 0; + left: 0; + + -webkit-animation: bounce 2.0s infinite ease-in-out; + animation: bounce 2.0s infinite ease-in-out; +} + +.double-bounce2 { + -webkit-animation-delay: -1.0s; + animation-delay: -1.0s; +} + +@-webkit-keyframes bounce { + 0%, 100% { -webkit-transform: scale(0.0) } + 50% { -webkit-transform: scale(1.0) } +} + +@keyframes bounce { + 0%, 100% { + transform: scale(0.0); + -webkit-transform: scale(0.0); + } 50% { + transform: scale(1.0); + -webkit-transform: scale(1.0); + } +} + diff --git a/src/assets/images/broken.png b/src/assets/images/broken.png new file mode 100644 index 0000000..a9943a8 Binary files /dev/null and b/src/assets/images/broken.png differ diff --git a/src/assets/images/crash.png b/src/assets/images/crash.png new file mode 100644 index 0000000..1c0cff8 Binary files /dev/null and b/src/assets/images/crash.png differ diff --git a/src/assets/images/dock.png b/src/assets/images/dock.png new file mode 100644 index 0000000..9c60b70 Binary files /dev/null and b/src/assets/images/dock.png differ diff --git a/src/assets/images/emoji-map.png b/src/assets/images/emoji-map.png new file mode 100644 index 0000000..62332b8 Binary files /dev/null and b/src/assets/images/emoji-map.png differ diff --git a/src/assets/images/filetypes/ai.png b/src/assets/images/filetypes/ai.png new file mode 100644 index 0000000..c0ad33d Binary files /dev/null and b/src/assets/images/filetypes/ai.png differ diff --git a/src/assets/images/filetypes/apk.png b/src/assets/images/filetypes/apk.png new file mode 100644 index 0000000..3728188 Binary files /dev/null and b/src/assets/images/filetypes/apk.png differ diff --git a/src/assets/images/filetypes/archive.png b/src/assets/images/filetypes/archive.png new file mode 100644 index 0000000..be511fe Binary files /dev/null and b/src/assets/images/filetypes/archive.png differ diff --git a/src/assets/images/filetypes/audio.png b/src/assets/images/filetypes/audio.png new file mode 100644 index 0000000..56b48f0 Binary files /dev/null and b/src/assets/images/filetypes/audio.png differ diff --git a/src/assets/images/filetypes/excel.png b/src/assets/images/filetypes/excel.png new file mode 100644 index 0000000..d659351 Binary files /dev/null and b/src/assets/images/filetypes/excel.png differ diff --git a/src/assets/images/filetypes/exe.png b/src/assets/images/filetypes/exe.png new file mode 100644 index 0000000..b304af5 Binary files /dev/null and b/src/assets/images/filetypes/exe.png differ diff --git a/src/assets/images/filetypes/image.png b/src/assets/images/filetypes/image.png new file mode 100644 index 0000000..afb1e1a Binary files /dev/null and b/src/assets/images/filetypes/image.png differ diff --git a/src/assets/images/filetypes/ipa.png b/src/assets/images/filetypes/ipa.png new file mode 100644 index 0000000..4f85f38 Binary files /dev/null and b/src/assets/images/filetypes/ipa.png differ diff --git a/src/assets/images/filetypes/pdf.png b/src/assets/images/filetypes/pdf.png new file mode 100644 index 0000000..fc6ac2e Binary files /dev/null and b/src/assets/images/filetypes/pdf.png differ diff --git a/src/assets/images/filetypes/ppt.png b/src/assets/images/filetypes/ppt.png new file mode 100644 index 0000000..b86ab91 Binary files /dev/null and b/src/assets/images/filetypes/ppt.png differ diff --git a/src/assets/images/filetypes/psd.png b/src/assets/images/filetypes/psd.png new file mode 100644 index 0000000..5a320e7 Binary files /dev/null and b/src/assets/images/filetypes/psd.png differ diff --git a/src/assets/images/filetypes/unknow.png b/src/assets/images/filetypes/unknow.png new file mode 100644 index 0000000..b1c2a1a Binary files /dev/null and b/src/assets/images/filetypes/unknow.png differ diff --git a/src/assets/images/filetypes/video.png b/src/assets/images/filetypes/video.png new file mode 100644 index 0000000..68535fb Binary files /dev/null and b/src/assets/images/filetypes/video.png differ diff --git a/src/assets/images/filetypes/word.png b/src/assets/images/filetypes/word.png new file mode 100644 index 0000000..903457f Binary files /dev/null and b/src/assets/images/filetypes/word.png differ diff --git a/src/assets/images/icon-new-message.png b/src/assets/images/icon-new-message.png new file mode 100644 index 0000000..668dea9 Binary files /dev/null and b/src/assets/images/icon-new-message.png differ diff --git a/src/assets/images/icon.png b/src/assets/images/icon.png new file mode 100644 index 0000000..09dcb38 Binary files /dev/null and b/src/assets/images/icon.png differ diff --git a/src/assets/images/messageGreen.png b/src/assets/images/messageGreen.png new file mode 100644 index 0000000..156ca0c Binary files /dev/null and b/src/assets/images/messageGreen.png differ diff --git a/src/assets/images/messageRed.png b/src/assets/images/messageRed.png new file mode 100644 index 0000000..92e8f07 Binary files /dev/null and b/src/assets/images/messageRed.png differ diff --git a/src/assets/images/noselected.png b/src/assets/images/noselected.png new file mode 100644 index 0000000..69eb8a4 Binary files /dev/null and b/src/assets/images/noselected.png differ diff --git a/src/assets/images/offline.png b/src/assets/images/offline.png new file mode 100644 index 0000000..156e979 Binary files /dev/null and b/src/assets/images/offline.png differ diff --git a/src/assets/images/qqemoji-map.png b/src/assets/images/qqemoji-map.png new file mode 100644 index 0000000..03842ab Binary files /dev/null and b/src/assets/images/qqemoji-map.png differ diff --git a/src/assets/images/user-fallback.png b/src/assets/images/user-fallback.png new file mode 100644 index 0000000..fddd9aa Binary files /dev/null and b/src/assets/images/user-fallback.png differ diff --git a/src/global.css b/src/global.css new file mode 100644 index 0000000..ed4e132 --- /dev/null +++ b/src/global.css @@ -0,0 +1,535 @@ +* { + user-select: none; + -webkit-font-smoothing: antialiased; + text-rendering: optimizeLegibility; +} + +html, +body { + margin: 0; + padding: 0; + background: none; + overflow: hidden; +} + +body { + position: relative; + height: 100vh; + color: #fff; + overflow-y: hidden; + font-size: 13px; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; +} + +label { + padding: 0; + margin: 0; + cursor: pointer; +} + +.isWin { + border: thin solid #ddd; +} + +.clearfix::after { + content: ' '; + visibility: hidden; + display: block; + font-size: 0; + clear: both; + height: 0; +} + +.clearfix { + display: inline-block; +} + +.fade { + transition: .2s; + opacity: 1; +} + +.fadein { + opacity: 0; +} + +.disabledDrag { + pointer-events: none; +} + +.link { + padding: 0; + margin: 0; + outline: 0; + text-decoration: none; +} + +/* WEB WECHAT EMOJI :START */ +.qqemoji { + display: -moz-inline-stack; + display: inline-block; + background: url(./assets/images/qqemoji-map.png) 0 0 no-repeat; + width: 20px; + height: 20px; + margin-left: 4px; + vertical-align: top; + zoom: .8; +} + +.qqemoji0 { + background-position: 0 0; +} + +.qqemoji1 { + background-position: -24px 0; +} + +.qqemoji2 { + background-position: -48px 0; +} + +.qqemoji3 { + background-position: -72px 0; +} + +.qqemoji4 { + background-position: -96px 0; +} + +.qqemoji5 { + background-position: -120px 0; +} + +.qqemoji6 { + background-position: -144px 0; +} + +.qqemoji7 { + background-position: -168px 0; +} + +.qqemoji8 { + background-position: -192px 0; +} + +.qqemoji9 { + background-position: -216px 0; +} + +.qqemoji10 { + background-position: -240px 0; +} + +.qqemoji11 { + background-position: -264px 0; +} + +.qqemoji12 { + background-position: -288px 0; +} + +.qqemoji13 { + background-position: -312px 0; +} + +.qqemoji14 { + background-position: -336px 0; +} + +.qqemoji15 { + background-position: 0 -24px; +} + +.qqemoji16 { + background-position: -24px -24px; +} + +.qqemoji17 { + background-position: -48px -24px; +} + +.qqemoji18 { + background-position: -72px -24px; +} + +.qqemoji19 { + background-position: -96px -24px; +} + +.qqemoji20 { + background-position: -120px -24px; +} + +.qqemoji21 { + background-position: -144px -24px; +} + +.qqemoji22 { + background-position: -168px -24px; +} + +.qqemoji23 { + background-position: -192px -24px; +} + +.qqemoji24 { + background-position: -216px -24px; +} + +.qqemoji25 { + background-position: -240px -24px; +} + +.qqemoji26 { + background-position: -264px -24px; +} + +.qqemoji27 { + background-position: -288px -24px; +} + +.qqemoji28 { + background-position: -312px -24px; +} + +.qqemoji29 { + background-position: -336px -24px; +} + +.qqemoji30 { + background-position: 0 -48px; +} + +.qqemoji31 { + background-position: -24px -48px; +} + +.qqemoji32 { + background-position: -48px -48px; +} + +.qqemoji33 { + background-position: -72px -48px; +} + +.qqemoji34 { + background-position: -96px -48px; +} + +.qqemoji35 { + background-position: -120px -48px; +} + +.qqemoji36 { + background-position: -144px -48px; +} + +.qqemoji37 { + background-position: -168px -48px; +} + +.qqemoji38 { + background-position: -192px -48px; +} + +.qqemoji39 { + background-position: -216px -48px; +} + +.qqemoji40 { + background-position: -240px -48px; +} + +.qqemoji41 { + background-position: -264px -48px; +} + +.qqemoji42 { + background-position: -288px -48px; +} + +.qqemoji43 { + background-position: -312px -48px; +} + +.qqemoji44 { + background-position: -336px -48px; +} + +.qqemoji45 { + background-position: 0 -72px; +} + +.qqemoji46 { + background-position: -24px -72px; +} + +.qqemoji47 { + background-position: -48px -72px; +} + +.qqemoji48 { + background-position: -72px -72px; +} + +.qqemoji49 { + background-position: -96px -72px; +} + +.qqemoji50 { + background-position: -120px -72px; +} + +.qqemoji51 { + background-position: -144px -72px; +} + +.qqemoji52 { + background-position: -168px -72px; +} + +.qqemoji53 { + background-position: -192px -72px; +} + +.qqemoji54 { + background-position: -216px -72px; +} + +.qqemoji55 { + background-position: -240px -72px; +} + +.qqemoji56 { + background-position: -264px -72px; +} + +.qqemoji57 { + background-position: -288px -72px; +} + +.qqemoji58 { + background-position: -312px -72px; +} + +.qqemoji59 { + background-position: -336px -72px; +} + +.qqemoji60 { + background-position: 0 -96px; +} + +.qqemoji61 { + background-position: -24px -96px; +} + +.qqemoji62 { + background-position: -48px -96px; +} + +.qqemoji63 { + background-position: -72px -96px; +} + +.qqemoji64 { + background-position: -96px -96px; +} + +.qqemoji65 { + background-position: -120px -96px; +} + +.qqemoji66 { + background-position: -144px -96px; +} + +.qqemoji67 { + background-position: -168px -96px; +} + +.qqemoji68 { + background-position: -192px -96px; +} + +.qqemoji69 { + background-position: -216px -96px; +} + +.qqemoji70 { + background-position: -240px -96px; +} + +.qqemoji71 { + background-position: -264px -96px; +} + +.qqemoji72 { + background-position: -288px -96px; +} + +.qqemoji73 { + background-position: -312px -96px; +} + +.qqemoji74 { + background-position: -336px -96px; +} + +.qqemoji75 { + background-position: 0 -120px; +} + +.qqemoji76 { + background-position: -24px -120px; +} + +.qqemoji77 { + background-position: -48px -120px; +} + +.qqemoji78 { + background-position: -72px -120px; +} + +.qqemoji79 { + background-position: -96px -120px; +} + +.qqemoji80 { + background-position: -120px -120px; +} + +.qqemoji81 { + background-position: -144px -120px; +} + +.qqemoji82 { + background-position: -168px -120px; +} + +.qqemoji83 { + background-position: -192px -120px; +} + +.qqemoji84 { + background-position: -216px -120px; +} + +.qqemoji85 { + background-position: -240px -120px; +} + +.qqemoji86 { + background-position: -264px -120px; +} + +.qqemoji87 { + background-position: -288px -120px; +} + +.qqemoji88 { + background-position: -312px -120px; +} + +.qqemoji89 { + background-position: -336px -120px; +} + +.qqemoji90 { + background-position: 0 -144px; +} + +.qqemoji91 { + background-position: -24px -144px; +} + +.qqemoji92 { + background-position: -48px -144px; +} + +.qqemoji93 { + background-position: -72px -144px; +} + +.qqemoji94 { + background-position: -96px -144px; +} + +.qqemoji95 { + background-position: -120px -144px; +} + +.qqemoji96 { + background-position: -144px -144px; +} + +.qqemoji97 { + background-position: -168px -144px; +} + +.qqemoji98 { + background-position: -192px -144px; +} + +.qqemoji99 { + background-position: -216px -144px; +} + +.qqemoji100 { + background-position: -240px -144px; +} + +.qqemoji101 { + background-position: -264px -144px; +} + +.qqemoji102 { + background-position: -288px -144px; +} + +.qqemoji103 { + background-position: -312px -144px; +} + +.qqemoji104 { + background-position: -336px -144px; +} + +.qqemoji105 { + background-position: 0 -168px; +} + +.qqemoji106 { + background-position: -24px -168px; +} + +.qqemoji107 { + background-position: -48px -168px; +} + +.qqemoji108 { + background-position: -72px -168px; +} + +.qqemoji109 { + background-position: -96px -168px; +} + +.qqemoji110 { + background-position: -120px -168px; +} + +.qqemoji111 { + background-position: -144px -168px; +} + +.qqemoji112 { + background-position: -168px -168px; +} + +/* WEB WECHAT EMOJI :END */ + +::-webkit-scrollbar { + width: 0; +} diff --git a/src/index.html b/src/index.html new file mode 100644 index 0000000..528d63a --- /dev/null +++ b/src/index.html @@ -0,0 +1,22 @@ + + + + + + weweChat + + +
+ + + diff --git a/src/js/components/Avatar/index.js b/src/js/components/Avatar/index.js new file mode 100644 index 0000000..f752a6d --- /dev/null +++ b/src/js/components/Avatar/index.js @@ -0,0 +1,38 @@ + +import React, { Component } from 'react'; +import PropTypes from 'prop-types'; + +import './style.global.css'; + +export default class Avatar extends Component { + static propTypes = { + src: PropTypes.string, + fallback: PropTypes.string, + }; + + static defaultProps = { + fallback: 'assets/images/user-fallback.png', + }; + + handleError(e) { + e.target.src = this.props.fallback; + } + + handleLoad(e) { + e.target.classList.remove('fadein'); + } + + render() { + if (!this.props.src) return false; + + return ( + this.handleLoad(e)} + onError={e => this.handleError(e)} + src={this.props.src} + /> + ); + } +} diff --git a/src/js/components/Avatar/style.global.css b/src/js/components/Avatar/style.global.css new file mode 100644 index 0000000..3fade60 --- /dev/null +++ b/src/js/components/Avatar/style.global.css @@ -0,0 +1,6 @@ + +.Avatar { + width: 48px; + height: 48px; + border-radius: 100%; +} diff --git a/src/js/components/Loader/index.js b/src/js/components/Loader/index.js new file mode 100644 index 0000000..0f28007 --- /dev/null +++ b/src/js/components/Loader/index.js @@ -0,0 +1,53 @@ + +import React, { Component } from 'react'; +import PropTypes from 'prop-types'; +import Transition from 'react-addons-css-transition-group'; +import clazz from 'classname'; + +import './style.global.css'; + +export default class Button extends Component { + static propTypes = { + show: PropTypes.bool, + fullscreen: PropTypes.bool, + }; + + static defaultProps = { + show: false, + fullscreen: false, + }; + + renderContent() { + if (!this.props.show) { + return; + } + + return ( +
+ + + +
+ ); + } + + render() { + return ( + + {this.renderContent()} + + ); + } +} diff --git a/src/js/components/Loader/style.global.css b/src/js/components/Loader/style.global.css new file mode 100644 index 0000000..f55aae4 --- /dev/null +++ b/src/js/components/Loader/style.global.css @@ -0,0 +1,82 @@ + +.Loader { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + border-radius: 1px; + background: rgba(255, 255, 255, .7); + z-index: 999; + + &.Loader--fullscreen { + position: fixed; + } +} + +.Loader-enter { + opacity: 0; + visibility: hidden; + transition: .2s; + + &.Loader-enter-active { + opacity: 1; + visibility: visible; + } +} + +.Loader-leave { + opacity: 1; + visibility: visible; + transition: .2s; + + &.Loader-leave-active { + opacity: 0; + visibility: hidden; + } +} + +.Loader-circular { + position: absolute; + top: 50%; + left: 50%; + display: block; + height: 100px; + width: 100px; + margin-top: -50px; + margin-left: -50px; + animation: Loader-rotate 2s linear infinite; +} + +.Loader-path { + stroke-dasharray: 1, 200; + stroke-dashoffset: 0; + stroke: #039be5; + stroke-width: 3; + animation: Loader-dash 1.5s ease-in-out infinite; + stroke-linecap: round; +} + +@keyframes Loader-rotate { + 100% { + transform: rotate(360deg); + } +} + +@keyframes Loader-dash { + 0% { + stroke-dasharray: 1, 200; + stroke-dashoffset: 0; + } + + 50% { + stroke-dasharray: 89, 200; + stroke-dashoffset: -35; + } + + 100% { + stroke-dasharray: 89, 200; + stroke-dashoffset: -124; + } +} + diff --git a/src/js/components/MessageInput/Emoji/index.js b/src/js/components/MessageInput/Emoji/index.js new file mode 100644 index 0000000..6ee71e6 --- /dev/null +++ b/src/js/components/MessageInput/Emoji/index.js @@ -0,0 +1,84 @@ + +import React, { Component } from 'react'; +import PropTypes from 'prop-types'; +import clazz from 'classname'; +import delegate from 'delegate'; + +import classes from './style.css'; +import { emoji } from 'utils/emoji'; + +export default class Emoji extends Component { + static propTypes = { + output: PropTypes.func.isRequired, + show: PropTypes.bool.isRequired, + close: PropTypes.func.isRequired, + }; + + componentDidMount() { + delegate(this.refs.container, 'a.qqemoji', 'click', e => { + e.preventDefault(); + e.stopPropagation(); + + this.props.output(e.target.title); + this.props.close(); + }); + } + + componentDidUpdate() { + if (this.props.show) { + this.refs.container.focus(); + } + } + + renderEmoji(emoji) { + return emoji.map((e, index) => { + var { key, className } = e; + return ( + + ); + }); + } + + render() { + return ( +
this.props.close()}> +
+ {this.renderEmoji(emoji.slice(0, 15))} +
+ +
+ {this.renderEmoji(emoji.slice(15, 30))} +
+ +
+ {this.renderEmoji(emoji.slice(30, 45))} +
+ +
+ {this.renderEmoji(emoji.slice(45, 60))} +
+ +
+ {this.renderEmoji(emoji.slice(60, 75))} +
+ +
+ {this.renderEmoji(emoji.slice(75, 90))} +
+ +
+ {this.renderEmoji(emoji.slice(90, 105))} +
+
+ ); + } +} diff --git a/src/js/components/MessageInput/Emoji/style.css b/src/js/components/MessageInput/Emoji/style.css new file mode 100644 index 0000000..b7f68ce --- /dev/null +++ b/src/js/components/MessageInput/Emoji/style.css @@ -0,0 +1,47 @@ + +.container { + position: absolute; + bottom: 60px; + right: 0; + padding: 8px 12px; + background: #fff; + box-shadow: 0 6px 28px 0 rgba(230, 230, 230, 1); + z-index: 99; + outline: 0; + opacity: 0; + visibility: hidden; + + & a { + margin: 4px; + cursor: pointer; + zoom: 1.1; + transition: .2s; + + &:hover { + transform: scale(1.2); + } + } + + &.show { + opacity: 1; + visibility: visible; + } +} + +.row { + display: flex; + justify-content: space-between; + align-items: center; +} + +@media (width <= 800px) { + .container { + bottom: 46px; + padding: 6px 10px; + + & a { + margin: 3px; + zoom: .9; + } + } +} diff --git a/src/js/components/MessageInput/Suggestion/index.js b/src/js/components/MessageInput/Suggestion/index.js new file mode 100644 index 0000000..838477c --- /dev/null +++ b/src/js/components/MessageInput/Suggestion/index.js @@ -0,0 +1,56 @@ + +import React, { Component } from 'react'; +import PropTypes from 'prop-types'; +import clazz from 'classname'; + +import './style.global.css'; +import TransitionPortal from 'components/TransitionPortal'; + +export default class Suggestion extends Component { + static propTypes = { + show: PropTypes.bool.isRequired, + list: PropTypes.array.isRequired, + }; + + renderContent() { + var { show, list, selected } = this.props; + + if (!show) { + return false; + } + + console.log(window.event); + + return ( +
+ { + list.map((e, index) => { + return ( +
+ + +
+

+

+
+ ); + }) + } +
+ ); + } + + render() { + return ( + + { + this.renderContent() + } + + ); + }; +} diff --git a/src/js/components/MessageInput/Suggestion/style.css b/src/js/components/MessageInput/Suggestion/style.css new file mode 100644 index 0000000..f97e679 --- /dev/null +++ b/src/js/components/MessageInput/Suggestion/style.css @@ -0,0 +1,120 @@ + +.Suggestion { + position: fixed; + bottom: 60px; + left: 311px; + height: calc(100vh - 200px); + background: #fff; + box-shadow: 0 0 24px 0 rgba(0, 0, 0, .2); + border-radius: 1px; + overflow: hidden; + overflow-y: auto; +} + +.Suggestion-item { + display: flex; + padding: 6px 12px; + justify-content: flex-start; + align-items: center; + cursor: pointer; +} + +.Suggestion--selected, +.Suggestion-item:hover { + background: #405de6; +} + +.Suggestion--selected .Suggestion-username, +.Suggestion-item:hover .Suggestion-username { + color: #fff; +} + +.Suggestion-item img { + width: 24px; + height: 24px; + margin-right: 12px; +} + +.Suggestion-username { + color: #777; + margin-bottom: 2px; +} + +.Suggestion-enter { + transform: translateY(24px); + opacity: 0; + transition: .2s cubic-bezier(.5, -.55, .4, 1.55); +} + +.Suggestion-enter.Suggestion-enter-active { + transform: translateY(0); + opacity: 1; +} + +.Suggestion-leave { + opacity: 1; + transition: .14s; +} + +.Suggestion-leave.Suggestion-leave-active { + transform: translateY(-24px); + opacity: 0; +} + +.Suggestion-input-user { + display: flex; + padding: 0 23px; + margin: 0 2px; + height: 32px; + align-items: center; + background: rgba(230, 230, 230, 1); + color: #777; + border-radius: 32px; + white-space: nowrap; +} + +.Suggestion-input-user img { + height: 20px; + width: 20px; + margin-right: 2px; +} + +.Suggestion-input-user * { + display: inline-block; + white-space: nowrap; +} + +@media (width <= 800px) { + .Suggestion { + bottom: 48px; + left: 280px; + } + + .Suggestion-item { + display: flex; + padding: 6px 12px; + } + + .Suggestion-item img { + width: 24px; + height: 24px; + margin-right: 12px; + } + + .Suggestion-username { + margin-bottom: 2px; + } + + .Suggestion-input-user { + padding: 0 23px; + margin: 0 2px; + height: 32px; + border-radius: 32px; + } + + .Suggestion-input-user img { + height: 20px; + width: 20px; + margin-right: 2px; + } +} diff --git a/src/js/components/MessageInput/index.js b/src/js/components/MessageInput/index.js new file mode 100644 index 0000000..62a628c --- /dev/null +++ b/src/js/components/MessageInput/index.js @@ -0,0 +1,226 @@ + +import React, { Component } from 'react'; +import PropTypes from 'prop-types'; +import { ipcRenderer } from 'electron'; +import clazz from 'classname'; + +import classes from './style.css'; +import Emoji from './Emoji'; + +export default class MessageInput extends Component { + static propTypes = { + me: PropTypes.object, + sendMessage: PropTypes.func.isRequired, + showMessage: PropTypes.func.isRequired, + user: PropTypes.array.isRequired, + confirmSendImage: PropTypes.func.isRequired, + process: PropTypes.func.isRequired, + }; + + static defaultProps = { + me: {}, + }; + + canisend() { + var user = this.props.user; + + if ( + true + && user.length === 1 + && user.slice(-1).pop().UserName === this.props.me.UserName + ) { + this.props.showMessage('Can\'t send messages to yourself.'); + return false; + } + + return true; + } + + async handleEnter(e) { + var message = this.refs.input.value.trim(); + var user = this.props.user; + var batch = user.length > 1; + + if ( + false + || !this.canisend() + || !message + || e.charCode !== 13 + ) return; + + // You can not send message to yourself + Promise.all( + user.filter(e => e.UserName !== this.props.me.UserName).map( + async e => { + let res = await this.props.sendMessage( + e, + { + content: message, + type: 1, + }, + true + ); + + if (!res) { + await this.props.showMessage(batch ? `Sending message to ${e.NickName} has failed!` : 'Failed to send message.'); + } + + return true; + } + ) + ); + + this.refs.input.value = ''; + } + + state = { + showEmoji: false + }; + + toggleEmoji(show = !this.state.showEmoji) { + this.setState({ showEmoji: show }); + } + + writeEmoji(emoji) { + var input = this.refs.input; + + input.value += `[${emoji}]`; + input.focus(); + } + + async batchProcess(file) { + var message; + var batch = this.props.user.length > 1; + var receiver = this.props.user.filter(e => e.UserName !== this.props.me.UserName); + var showMessage = this.props.showMessage; + + if (this.canisend() === false) { + return; + } + + for (let user of receiver) { + if (message) { + await this.props.sendMessage(user, message, true) + .catch(ex => showMessage(`Sending message to ${user.NickName} has failed!`)); + continue; + } + + // Do not repeat upload file, forward the message to another user + message = await this.props.process(file, user); + + if (message === false) { + if (batch) { + showMessage(`Send message to ${user.NickName} is failed!`); + continue; + } + // In batch mode just show the failed message + showMessage('Failed to send image.'); + } + } + } + + async handlePaste(e) { + var args = ipcRenderer.sendSync('file-paste'); + + if (args.hasImage && this.canisend()) { + e.preventDefault(); + + if ((await this.props.confirmSendImage(args.filename)) === false) { + return; + } + + let parts = [ + new window.Blob([new window.Uint8Array(args.raw.data)], { type: 'image/png' }) + ]; + let file = new window.File(parts, args.filename, { + lastModified: new Date(), + type: 'image/png' + }); + + this.batchProcess(file); + } + } + + componentWillReceiveProps(nextProps) { + var input = this.refs.input; + + // When user has changed clear the input + if ( + true + && input + && input.value + && this.props.user.map(e => e.UserName).join() !== nextProps.user.map(e => e.UserName).join() + ) { + input.value = ''; + } + } + + render() { + var canisend = !!this.props.user.length; + + return ( +
+
+ You should choose a contact first. +
+ + this.handlePaste(e)} + onKeyPress={e => this.handleEnter(e)} + /> + +
+ canisend && this.refs.uploader.click()} + /> + + canisend && this.toggleEmoji(true)} + style={{ + color: 'red', + }} + /> + + { + this.batchProcess(e.target.files[0]); + e.target.value = ''; + }} + ref="uploader" + style={{ + display: 'none', + }} + type="file" + /> + + setTimeout(() => this.toggleEmoji(false), 100)} + output={emoji => this.writeEmoji(emoji)} + show={this.state.showEmoji} + /> +
+
+ ); + } +} diff --git a/src/js/components/MessageInput/style.css b/src/js/components/MessageInput/style.css new file mode 100644 index 0000000..2cb80f5 --- /dev/null +++ b/src/js/components/MessageInput/style.css @@ -0,0 +1,94 @@ + +.container { + position: relative; + display: flex; + height: 60px; + align-items: center; + justify-content: space-between; + + & input { + height: 60px; + width: 100%; + margin-left: 32px; + line-height: 60px; + border: 0; + padding-right: 17px; + background: 0; + color: #333; + font-size: 14px; + outline: 0; + } + + & i { + font-size: 24px; + color: #000; + cursor: pointer; + } + + & i:hover { + color: #34b7f1; + } +} + +.action { + width: 65px; + margin-right: 17px; + display: flex; + justify-content: space-between; +} + +.tips { + position: absolute; + height: 32px; + left: 14px; + top: -32px; + padding: 0 16px; + line-height: 32px; + font-size: 14px; + color: #fff; + background: color(#616161 -alpha(10%)); + border-radius: 1px; + opacity: 0; + transform-origin: center bottom; + transition: .15s cubic-bezier(0, 0, .2, 1); + pointer-events: none; +} + +.shouldSelectUser:hover .tips { + opacity: 1; + top: calc(-32px - 24px); +} + + +@media (width <= 800px) { + .container { + height: 46px; + + & input { + height: 46px; + margin-left: 20px; + line-height: 46px; + } + + & i { + font-size: 16px; + } + } + + & .action { + width: 50px; + } + + .tips { + height: 24px; + top: -24px; + padding: 0 12px; + line-height: 24px; + font-size: 12px; + } + + .shouldSelectUser:hover .tips { + opacity: 1; + top: calc(-24px - 12px); + } +} diff --git a/src/js/components/Modal/index.js b/src/js/components/Modal/index.js new file mode 100644 index 0000000..d4e9e92 --- /dev/null +++ b/src/js/components/Modal/index.js @@ -0,0 +1,130 @@ + +import React, { Component } from 'react'; +import PropTypes from 'prop-types'; +import Transition from 'react-addons-css-transition-group'; +import clazz from 'classname'; + +import './style.css'; +import TransitionPortal from '../TransitionPortal'; +import { on, off } from 'utils/event'; + +class ModalBody extends Component { + render() { + return ( + +
+ {this.props.children} +
+
+ ); + } +}; + +class ModalHeader extends Component { + render() { + return ( +
+ {this.props.children} +
+ ); + } +} + +class ModalFooter extends Component { + render() { + return ( +
+ {this.props.children} +
+ ); + } +} + +class Modal extends Component { + static propTypes = { + show: PropTypes.bool.isRequired, + overlay: PropTypes.bool, + onCancel: PropTypes.func, + transition4overlay: PropTypes.string, + transition4body: PropTypes.string + }; + + static defaultProps = { + overlay: true, + transition4overlay: 'Modal-overlay', + transition4body: 'Modal-body', + onCancel: Function, + }; + + renderOverlay() { + if (!this.props.show || !this.props.overlay) { + return; + } + + return ( +
+ ); + } + + renderBody() { + if (!this.props.show) { + return; + } + + return ( +
+ {this.props.children} +
+ ); + } + + handleEscKey(e) { + if (e.keyCode === 27 && this.props.show) { + this.props.onCancel(); + } + } + + componentWillUnmount() { + off(document, 'keydown', this.handleEscKey); + } + + componentDidMount() { + this.handleEscKey = this.handleEscKey.bind(this); + on(document, 'keydown', this.handleEscKey); + } + + render() { + if (!/MSIE\s8\.0/.test(window.navigator.userAgent)) { + document.body.style.overflow = this.props.show ? 'hidden' : null; + } + + return ( +
+ + {this.renderOverlay()} + + + + {this.renderBody()} + +
+ ); + } +}; + +export { Modal, ModalBody, ModalHeader, ModalFooter }; diff --git a/src/js/components/Modal/style.css b/src/js/components/Modal/style.css new file mode 100644 index 0000000..168099d --- /dev/null +++ b/src/js/components/Modal/style.css @@ -0,0 +1,99 @@ + +:global .Modal-overlay { + position: fixed; + top: 0; + left: 0; + width: 100%; + height: 100%; + background: rgba(255, 255, 255, .7); + z-index: 999; +} + +:global .Modal-header { + position: relative; + padding: 8px 20px 4px; + color: #777; + border-bottom: thin solid #d9d9d9; + + & .Modal-close { + float: right; + cursor: pointer; + font-size: 14px; + + &:hover { + color: $google; + } + } +} + +:global .Modal-footer { + padding: 8px 12px; +} + +:global .Modal-content { + position: fixed; + top: 50%; + left: 50%; + min-width: 240px; + font-size: 12px; + color: #777; + z-index: 999; + transform: translate(-50%, -50%); + + & > div { + pointer-events: all; + background: #fff; + border-radius: 1px; + box-shadow: 0 1px 4px rgba(0, 0, 0, .3); + } +} + +:global .Modal-body { + padding: 12px; + background: #fff; + box-shadow: 0 1px 4px rgba(0, 0, 0, .3); +} + +:global .Modal-overlay-enter { + opacity: 0; + visibility: hidden; + transition: .2s; + + &.Modal-overlay-enter-active { + opacity: 1; + visibility: visible; + } +} + +:global .Modal-overlay-leave { + opacity: 1; + visibility: visible; + transition: .2s; + + &.Modal-overlay-leave-active { + opacity: 0; + visibility: hidden; + } +} + +:global .Modal-body-enter { + transform: translate(-50%, -50%) scale(.8); + opacity: 0; + transition: .2s cubic-bezier(.5, -.55, .4, 1.55); + + &.Modal-body-enter-active { + transform: translate(-50%, -50%) scale(1); + opacity: 1; + } +} + +:global .Modal-body-leave { + transform: translate(-50%, -50%); + opacity: 1; + transition: .14s; + + &.Modal-body-leave-active { + transform: translate(-50%, -60%); + opacity: 0; + } +} diff --git a/src/js/components/Offline/index.js b/src/js/components/Offline/index.js new file mode 100644 index 0000000..33cb8c1 --- /dev/null +++ b/src/js/components/Offline/index.js @@ -0,0 +1,35 @@ + +import React, { Component } from 'react'; +import PropTypes from 'prop-types'; + +import classes from './style.css'; + +export default class Avatar extends Component { + static propTypes = { + show: PropTypes.bool.isRequired, + }; + + static defaultProps = { + show: false, + }; + + render() { + if (!this.props.show) return false; + + return ( +
+
+ + +

Oops, seems like you are offline!

+ + +
+
+ ); + } +} diff --git a/src/js/components/Offline/style.css b/src/js/components/Offline/style.css new file mode 100644 index 0000000..e45a7f1 --- /dev/null +++ b/src/js/components/Offline/style.css @@ -0,0 +1,50 @@ + +.container { + position: fixed; + top: 40px; + left: 0; + width: 100%; + height: 100%; + background: #f9f9f9; + text-align: center; + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + z-index: 99; + + & img { + transform: translateY(60px); + width: 300px; + } + + & h1 { + color: #777; + font-family: 'Roboto'; + font-weight: 100; + } + + & button { + cursor: pointer; + font-size: 120%; + margin-top: 4%; + padding: 2% 5%; + border: solid 0 transparent; + color: #fff; + text-transform: uppercase; + box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .26); + background: #4285f4 radial-gradient(circle at 0 0, rgba(0, 0, 0, .3) 0%, rgba(0, 0, 0, 0) 0) no-repeat; + background-color: #4285f4; + transition: all .2s; + } + + & > div { + transform: translateY(-110px); + } +} + +@media (width <= 800px) { + .container { + top: 30px; + } +} diff --git a/src/js/components/Snackbar/index.js b/src/js/components/Snackbar/index.js new file mode 100644 index 0000000..7c1f56d --- /dev/null +++ b/src/js/components/Snackbar/index.js @@ -0,0 +1,44 @@ + +import React, { Component } from 'react'; +import PropTypes from 'prop-types'; + +import './style.global.css'; +import TransitionPortal from '../TransitionPortal'; + +export default class Snackbar extends Component { + static propTypes = { + show: PropTypes.bool.isRequired, + text: PropTypes.string.isRequired, + close: PropTypes.func.isRequired, + }; + + renderContent() { + if (!this.props.show) { + return false; + } + + return ( +
+
+
this.props.close()}> + DONE +
+
+ ); + } + + render() { + return ( + + {this.renderContent()} + + ); + } +} diff --git a/src/js/components/Snackbar/style.global.css b/src/js/components/Snackbar/style.global.css new file mode 100644 index 0000000..fc92262 --- /dev/null +++ b/src/js/components/Snackbar/style.global.css @@ -0,0 +1,71 @@ + +.Snackbar { + position: fixed; + right: 17px; + bottom: 84px; + display: flex; + height: 48px; + line-height: 48px; + min-width: 288px; + max-width: 568px; + border-radius: 2px; + align-items: center; + justify-content: space-between; + padding-left: 24px; + font-family: 'Roboto'; + background-color: #323232; + z-index: 999; +} + +.Snackbar-action { + padding: 0 24px; + color: #ff4081; + font-weight: 500; + cursor: pointer; +} + +.Snackbar-enter { + transform: translateY(24px); + opacity: 0; + transition: .2s cubic-bezier(.5, -.55, .4, 1.55); +} + +.Snackbar-enter.Snackbar-enter-active { + transform: translateY(0); + opacity: 1; +} + +.Snackbar-leave { + opacity: 1; + transition: .14s; +} + +.Snackbar-leave.Snackbar-leave-active { + transform: translateY(-24px); + opacity: 0; +} + +@media screen and (max-width: 800px) { + .Snackbar { + right: 17px; + bottom: 59px; + height: 36px; + line-height: 36px; + min-width: 220px; + max-width: 460px; + padding-left: 12px; + font-size: 12px; + } + + .Snackbar-action { + padding: 0 12px; + } + + .Snackbar-enter { + transform: translateY(12px); + } + + .Snackbar-leave.Snackbar-leave-active { + transform: translateY(-12px); + } +} diff --git a/src/js/components/Switch/index.js b/src/js/components/Switch/index.js new file mode 100644 index 0000000..a52fef3 --- /dev/null +++ b/src/js/components/Switch/index.js @@ -0,0 +1,18 @@ + +import React, { Component } from 'react'; + +import blacklist from 'utils/blacklist'; +import './style.global.css'; + +export default class Switch extends Component { + render() { + return ( + + + + + ); + } +} diff --git a/src/js/components/Switch/style.global.css b/src/js/components/Switch/style.global.css new file mode 100644 index 0000000..d7a1824 --- /dev/null +++ b/src/js/components/Switch/style.global.css @@ -0,0 +1,66 @@ + +.Switch { + display: inline-block; + margin: 0; + padding: 0; + cursor: pointer; +} + +.Switch input { + display: none; +} + +.Switch input:checked + .Switch--fake::before { + background: rgba(157, 166, 216, 1); +} + +.Switch input:checked + .Switch--fake::after { + left: auto; + right: 0; + background: #3f51b5; +} + +.Switch--fake { + position: relative; + display: inline-block; + width: 35px; + height: 20px; +} + +.Switch--fake::before, +.Switch--fake::after { + content: ''; +} + +.Switch--fake::before { + display: block; + width: 35px; + height: 14px; + margin-top: 3px; + background: rgba(0, 0, 0, .26); + border-radius: 14px; + transition: .5s ease-in-out; +} + +.Switch--fake::after { + position: absolute; + left: 0; + top: 0; + width: 20px; + height: 20px; + border-radius: 20px; + background: #fff; + box-sizing: border-box; + box-shadow: 0 3px 4px 0 rgba(0, 0, 0, .5); + transition: .2s; +} + +.Switch input:disabled + .Switch--fake::before { + background: rgba(0, 0, 0, .12); +} + +.Switch input:disabled + .Switch--fake::after { + left: auto; + right: 0; + background: #bdbdbd; +} diff --git a/src/js/components/TransitionPortal/index.js b/src/js/components/TransitionPortal/index.js new file mode 100644 index 0000000..fb17336 --- /dev/null +++ b/src/js/components/TransitionPortal/index.js @@ -0,0 +1,26 @@ + +import React, { Component } from 'react'; +import ReactDOM from 'react-dom'; +import Transition from 'react-addons-css-transition-group'; + +export default class TransitionPortal extends Component { + ele; + + componentDidMount() { + this.ele = document.createElement('div'); + document.body.appendChild(this.ele); + this.componentDidUpdate(); + } + + componentDidUpdate() { + ReactDOM.render({this.props.children}, this.ele); + } + + componentWillUnmount() { + document.body.removeChild(this.ele); + } + + render() { + return null; + } +} diff --git a/src/js/components/UserList/index.js b/src/js/components/UserList/index.js new file mode 100644 index 0000000..ec39025 --- /dev/null +++ b/src/js/components/UserList/index.js @@ -0,0 +1,195 @@ + +import React, { Component } from 'react'; +import PropTypes from 'prop-types'; +import clazz from 'classname'; + +import classes from './style.css'; + +export default class UserList extends Component { + static propTypes = { + max: PropTypes.number.isRequired, + searching: PropTypes.string.isRequired, + search: PropTypes.func.isRequired, + getList: PropTypes.func.isRequired, + onChange: PropTypes.func.isRequired, + }; + + static defaultProps = { + max: 20, + }; + + state = { + selected: [], + active: '', + }; + + highlight(offset) { + var scroller = this.refs.list; + var users = Array.from(scroller.querySelectorAll('li[data-userid]')); + var index = users.findIndex(e => e.classList.contains(classes.active)); + + if (index > -1) { + users[index].classList.remove(classes.active); + } + + index += offset; + + if (index < 0) { + // Fallback to the last element + index = users.length - 1; + } else if (index > users.length - 1) { + // Fallback to the 1th element + index = 0; + } + + var active = users[index]; + + if (active) { + // Keep active item always in the viewport + active.classList.add(classes.active); + scroller.scrollTop = active.offsetTop + active.offsetHeight - scroller.offsetHeight; + } + } + + navigation(e) { + var keyCode = e.keyCode; + var offset = { + // Up + '38': -1, + '40': 1, + }[keyCode]; + + if (offset) { + this.highlight(offset); + } + + if (keyCode !== 13) { + return; + } + + var active = this.refs.list.querySelector(`.${classes.active}`); + + if (active) { + let userid = active.dataset.userid; + + if (!this.state.selected.includes(userid)) { + // Add + this.addSelected(userid, userid); + } else { + // Remove + this.removeSelected(userid, userid); + } + setTimeout(() => this.props.onChange(this.state.selected)); + } + } + + timer; + + search(text) { + clearTimeout(this.timer); + + this.timer = setTimeout(() => { + this.props.search(text); + }, 300); + } + + addSelected(userid, active = this.state.active) { + var selected = [ + userid, + ...this.state.selected, + ]; + var max = this.props.max; + + if (max > 0) { + selected = selected.slice(0, this.props.max); + } + + this.setState({ + active, + selected, + }); + setTimeout(() => this.props.onChange(this.state.selected)); + } + + removeSelected(userid, active = this.state.active) { + var selected = this.state.selected; + var index = selected.indexOf(userid); + + this.setState({ + active, + selected: [ + ...selected.slice(0, index), + ...selected.slice(index + 1, selected.length) + ] + }); + setTimeout(() => this.props.onChange(this.state.selected)); + } + + toggleSelected(userid) { + if (!this.state.selected.includes(userid)) { + // Add + this.addSelected(userid); + } else { + // Remove + this.removeSelected(userid); + } + + setTimeout(() => this.refs.input.focus()); + } + + renderList() { + var { searching, getList } = this.props; + var list = getList(); + + if (searching && list.length === 0) { + return ( +
  • + +

    Can't find any people matching '{searching}'

    +
  • + ); + } + + return list.map((e, index) => { + return ( +
  • this.toggleSelected(e.UserName)}> + + + + +
  • + ); + }); + } + + render() { + return ( +
    + this.navigation(e)} + onInput={e => this.search(e.target.value)} + placeholder="Type to Search..." + ref="input" + type="text" /> + +
      + {this.renderList()} +
    +
    + ); + } +} diff --git a/src/js/components/UserList/style.css b/src/js/components/UserList/style.css new file mode 100644 index 0000000..2e1590e --- /dev/null +++ b/src/js/components/UserList/style.css @@ -0,0 +1,97 @@ + +.list { + padding: 0; + margin: 0; + list-style: none; + height: 60vh; + width: 45vw; + overflow-x: hidden; + overflow-y: auto; + + & li { + position: relative; + display: flex; + margin: 24px; + justify-content: flex-start; + align-items: center; + font-size: 16px; + color: #333; + cursor: pointer; + + &:not(.notfound):hover, + &.active, + &.active i { + color: rgba(33, 150, 243, .9) !important; + } + + &.selected, + &.selected i { + color: #3f51b5; + } + } + + & li i { + position: absolute; + top: 50%; + right: 24px; + font-size: 20px; + color: #ddd; + transform: translateY(-50%); + } +} + +.avatar { + height: 32px; + width: 32px; + margin-right: 24px; + border-radius: 0; + box-shadow: 0 0 10px 0 rgba(0, 0, 0, .5); +} + +.notfound { + justify-content: center !important; + flex-direction: column; + + & img { + width: 240px; + } + + & h3 { + font-weight: 100; + white-space: nowrap; + } +} + +.username { + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + max-width: 70%; + display: inline-block; +} + +@media (width <= 800px) { + .list { + & li { + margin: 20px; + font-size: 13px; + } + + & li i { + right: 24px; + font-size: 16px; + } + } + + .avatar { + height: 24px; + width: 24px; + margin-right: 20px; + } + + .notfound { + & img { + width: 200px; + } + } +} diff --git a/src/js/pages/AddFriend/index.js b/src/js/pages/AddFriend/index.js new file mode 100644 index 0000000..5a8ce07 --- /dev/null +++ b/src/js/pages/AddFriend/index.js @@ -0,0 +1,47 @@ + +import React, { Component } from 'react'; +import { Modal, ModalBody } from 'components/Modal'; +import { inject, observer } from 'mobx-react'; + +import classes from './style.css'; + +@inject(stores => ({ + me: stores.session.user, + show: stores.addfriend.show, + close: () => stores.addfriend.toggle(false), + sendRequest: stores.addfriend.sendRequest, +})) +@observer +export default class AddFriend extends Component { + addFriend() { + this.props.sendRequest(this.refs.input.value); + this.props.close(); + } + + render() { + var { me, show, close } = this.props; + + return ( + close()} + show={show}> + + Send friend request first + + + +
    + + + +
    +
    +
    + ); + } +} diff --git a/src/js/pages/AddFriend/style.css b/src/js/pages/AddFriend/style.css new file mode 100644 index 0000000..fc149c0 --- /dev/null +++ b/src/js/pages/AddFriend/style.css @@ -0,0 +1,76 @@ + +.container { + background: rgba(0, 0, 0, .9); + height: 100vh; + width: 100vw; + display: flex; + justify-content: center; + align-items: center; + flex-direction: column; + font-family: 'Roboto'; + font-size: 36px; + color: #fff; + font-weight: 100; + letter-spacing: 2px; + word-spacing: 4px; + + & input { + height: 64px; + line-height: 64px; + margin-top: 5%; + width: 80%; + text-align: center; + border: none; + background: none; + outline: 0; + font-size: 32px; + font-weight: 100; + color: #fff; + } + + & button { + display: inline-block; + height: 36px; + background-color: rgba(99, 99, 99, 0); + font-family: 'Roboto'; + font-weight: 500; + color: rgba(33, 150, 243, .9); + line-height: 36px; + text-align: center; + letter-spacing: .4px; + padding: 0 16px; + border: 0; + text-transform: uppercase; + margin: 24px 12px; + font-size: 16px; + outline: 0; + cursor: pointer; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + transition: .2s; + } + + & button:hover { + background: rgba(99, 99, 99, .2); + } +} + +@media (width <= 800px) { + .container { + font-size: 26px; + word-spacing: 2px; + + & input { + height: 46px; + line-height: 46px; + font-size: 24px; + } + + & button { + height: 26px; + line-height: 26px; + padding: 0 12px; + margin: 24px 12px; + font-size: 14px; + } + } +} diff --git a/src/js/pages/AddMember/index.js b/src/js/pages/AddMember/index.js new file mode 100644 index 0000000..b6f5e05 --- /dev/null +++ b/src/js/pages/AddMember/index.js @@ -0,0 +1,122 @@ + +import React, { Component } from 'react'; +import { Modal, ModalBody } from 'components/Modal'; +import { inject, observer } from 'mobx-react'; + +import classes from './style.css'; +import UserList from 'components/UserList'; +import helper from 'utils/helper'; + +@inject(stores => ({ + show: stores.addmember.show, + searching: stores.addmember.query, + getList: () => { + var { addmember, contacts } = stores; + + if (addmember.query) { + return addmember.list; + } + + return contacts.memberList.filter( + e => !helper.isChatRoom(e.UserName) + && !helper.isFileHelper(e) + && e.UserName !== stores.session.user.User.UserName + ); + }, + addMember: async(userids) => { + var roomid = stores.chat.user.UserName; + + return stores.addmember.addMember(roomid, userids); + }, + getUser: (userid) => { + return stores.contacts.memberList.find(e => e.UserName === userid); + }, + search: stores.addmember.search, + close: () => { + stores.addmember.reset(); + stores.addmember.toggle(false); + }, +})) +@observer +export default class AddMember extends Component { + state = { + selected: [], + }; + + close() { + this.props.close(); + this.setState({ + selected: [], + }); + } + + async add(userids) { + await this.props.addMember(userids); + this.close(); + } + + renderList() { + var self = this; + var { show, searching, search, getList } = this.props; + + if (!show) { + return false; + } + + return ( + + ); + } + + render() { + return ( + this.close()} + show={this.props.show}> + + Add Members + +
    + { + this.state.selected.map((e, index) => { + var user = this.props.getUser(e); + return ( + this.refs.users.removeSelected(e)} + src={user.HeadImgUrl} /> + ); + }) + } +
    + + {this.renderList()} + +
    + + + +
    +
    +
    + ); + } +} diff --git a/src/js/pages/AddMember/style.css b/src/js/pages/AddMember/style.css new file mode 100644 index 0000000..487a7ff --- /dev/null +++ b/src/js/pages/AddMember/style.css @@ -0,0 +1,103 @@ + +.container { + background: #fff; + height: 100vh; + width: 100vw; + display: flex; + justify-content: center; + align-items: center; + flex-direction: column; + font-family: 'Roboto'; + font-size: 36px; + color: #000; + font-weight: 100; + letter-spacing: 2px; + word-spacing: 4px; + + & input { + height: 64px; + line-height: 64px; + width: 80%; + text-align: center; + border: none; + background: none; + outline: 0; + font-size: 32px; + font-weight: 100; + } + + & button { + display: inline-block; + height: 36px; + background-color: rgba(99, 99, 99, 0); + font-family: 'Roboto'; + font-weight: 500; + color: rgba(33, 150, 243, .9); + line-height: 36px; + text-align: center; + letter-spacing: .4px; + padding: 0 16px; + border: 0; + text-transform: uppercase; + margin: 0 12px; + font-size: 16px; + outline: 0; + cursor: pointer; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + transition: .2s; + } + + & button:disabled { + background: rgba(99, 99, 99, .2); + opacity: .5; + } + + & button:hover { + background: rgba(99, 99, 99, .2); + } +} + +.avatars { + min-height: 20px; + + & img { + height: 24px; + width: 24px; + margin: 12px 4px; + box-shadow: 0 0 8px 0 rgba(0, 0, 0, .3); + cursor: pointer; + } +} + +@media (width <= 800px) { + .container { + font-size: 26px; + letter-spacing: 2px; + word-spacing: 2px; + + & input { + height: 46px; + line-height: 46px; + font-size: 24px; + } + + & button { + height: 26px; + line-height: 26px; + letter-spacing: .4px; + padding: 0 12px; + margin: 0 10px; + font-size: 14px; + } + } + + .avatars { + min-height: 20px; + + & img { + height: 24px; + width: 24px; + margin: 12px 4px; + } + } +} diff --git a/src/js/pages/BatchSend/index.js b/src/js/pages/BatchSend/index.js new file mode 100644 index 0000000..cc8b4a7 --- /dev/null +++ b/src/js/pages/BatchSend/index.js @@ -0,0 +1,174 @@ + +import React, { Component } from 'react'; +import { observer, inject } from 'mobx-react'; +import clazz from 'classname'; + +import classes from './style.css'; +import MessageInput from 'components/MessageInput'; + +@inject(stores => ({ + show: stores.batchsend.show, + close: () => stores.batchsend.toggle(false), + search: stores.batchsend.search, + searching: stores.batchsend.query, + contacts: stores.contacts.memberList, + filtered: stores.batchsend.filtered, + sendMessage: stores.chat.sendMessage, + showMessage: stores.snackbar.showMessage, + me: stores.session.user, + confirmSendImage: async(image) => { + if (!stores.settings.confirmImagePaste) { + return true; + } + + var confirmed = await stores.confirmImagePaste.toggle(true, image); + return confirmed; + }, + process: stores.chat.process, +})) +@observer +export default class BatchSend extends Component { + state = { + selected: [], + }; + + close() { + this.setState({ + selected: [], + }); + this.props.close(); + } + + componentDidMount() { + this.setState({ + selected: [], + }); + this.props.search(); + } + + handleSelected(user) { + var selected = this.state.selected; + var index = selected.findIndex(e => e.UserName === user.UserName); + + if (index === -1) { + selected.push(user); + } else { + selected = [ + ...selected.slice(0, index), + ...selected.slice(index + 1, selected.length), + ]; + } + + this.setState({ + selected, + }); + } + + selectAll() { + var contacts = this.props.contacts; + var selected = this.state.selected; + var isall = contacts.length === selected.length; + + if (isall) { + // Unselected all user + selected = []; + } else { + selected = contacts.map(e => Object.assign({}, e)); + } + + this.setState({ + selected, + }); + } + + search(text = '') { + text = text.trim(); + + clearTimeout(this.search.timer); + this.search.timer = setTimeout(() => { + this.props.search(text); + }, 300); + } + + render() { + var { contacts, searching, filtered, showMessage, sendMessage, me = {}, confirmSendImage, process } = this.props; + + if (!this.props.show) { + return false; + } + + return ( +
    +
    + this.search(e.target.value)} + placeholder="Batch to send message, Choose one or more user." + type="text" /> + + + this.selectAll()} + style={{ + marginRight: 20, + }} /> + this.close()} /> + +
    + +
      + { + (searching && filtered.length === 0) && ( +
      + +

      Can't find any people matching '{searching}'

      +
      + ) + } + + { + (searching ? filtered : contacts).map((e, index) => { + return ( +
    • this.handleSelected(e)}> +
      + + + { + this.state.selected.find(user => user.UserName === e.UserName) && ( + + ) + } +
    • + ); + }) + } +
    + +
    + +
    +
    + ); + } +} diff --git a/src/js/pages/BatchSend/style.css b/src/js/pages/BatchSend/style.css new file mode 100644 index 0000000..485b137 --- /dev/null +++ b/src/js/pages/BatchSend/style.css @@ -0,0 +1,206 @@ + +.container { + position: fixed; + top: 40px; + left: 0; + width: 100vw; + background: #fff; + color: #333; + z-index: 9; + + & header { + display: flex; + padding: 0 12px; + height: 50px; + line-height: 50px; + justify-content: space-between; + align-items: center; + font-family: 'Roboto'; + font-weight: 100; + font-size: 20px; + color: #333; + } + + & input { + height: 60px; + width: 100%; + text-align: center; + line-height: 60px; + border: 0; + background: 0; + color: #333; + font-size: 14px; + outline: 0; + } + + & header i { + cursor: pointer; + } + + & header input { + height: 50px; + padding-right: 17px; + line-height: 50px; + text-align: left; + } + + & .active, + & header i:hover { + color: #34b7f1; + } +} + +.list { + position: relative; + padding: 0; + padding-top: 8px; + margin: 0; + list-style: none; + height: calc(100vh - 90px - 60px - 8px); /* Height - Header - Search Input - Message Input - Padding */ + overflow: hidden; + overflow-y: auto; + + & li { + position: relative; + display: inline-block; + padding: 4px 18px; + padding-right: 32px; + margin: 6px 8px; + min-width: 80px; + line-height: 32px; + text-align: left; + border-radius: 48px; + color: #fff; + background: #f7f7f7; + cursor: pointer; + overflow: hidden; + transition: .2s; + } + + + & li:hover .cover { + opacity: 1; + transform: scale(1.2); + } + + & li i { + position: absolute; + right: 4px; + top: 50%; + transform: translateY(-50%); + height: 24px; + width: 24px; + line-height: 24px; + text-align: center; + border-radius: 24px; + background: #405de6; + } +} + +.cover { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + background-size: cover; + background-position: center; + transform: scale(1); + opacity: .6; + transition: .2s; + + &::after { + content: ''; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + background: rgba(0, 0, 0, .3); + } +} + +.username { + position: relative; + font-size: 13px; +} + +.footer { + height: 60px; + box-shadow: inset 0 1px 0 0 #eaedea; +} + +.notfound { + display: flex; + justify-content: center; + flex-direction: column; + align-items: center; + height: 100%; + + & img { + width: 240px; + } + + & h1 { + font-family: 'Roboto'; + font-weight: 100; + color: rgba(0, 0, 0, .8); + letter-spacing: 2px; + word-spacing: 4px; + } +} + +@media (width <= 800px) { + .container { + top: 30px; + + & header { + padding: 0 10px; + height: 40px; + line-height: 40px; + font-size: 16px; + } + + & header input { + height: 40px; + line-height: 40px; + } + } + + .list { + height: calc(100vh - 80px - 46px - 8px); + + & li { + padding: 2px 14px; + padding-right: 24px; + margin: 4px 6px; + min-width: 70px; + line-height: 28px; + border-radius: 32px; + } + } + + .footer { + height: 46px; + + & input { + height: 46px; + line-height: 46px; + font-size: 13px; + } + } + + .username { + font-size: 12px; + } + + .notfound { + & img { + width: 220px; + } + + & h1 { + word-spacing: 2px; + } + } +} diff --git a/src/js/pages/ConfirmImagePaste/index.js b/src/js/pages/ConfirmImagePaste/index.js new file mode 100644 index 0000000..c8225f8 --- /dev/null +++ b/src/js/pages/ConfirmImagePaste/index.js @@ -0,0 +1,65 @@ + +import React, { Component } from 'react'; +import { Modal, ModalBody } from 'components/Modal'; +import { inject, observer } from 'mobx-react'; + +import classes from './style.css'; + +@inject(stores => { + var confirmImagePaste = stores.confirmImagePaste; + + return { + show: confirmImagePaste.show, + image: confirmImagePaste.image, + + ok: () => { + console.log('ok'); + confirmImagePaste.ok(); + confirmImagePaste.toggle(false); + }, + cancel: () => { + console.log('cancel'); + confirmImagePaste.cancel(); + confirmImagePaste.toggle(false); + }, + }; +}) +@observer +export default class ConfirmImagePaste extends Component { + navigation(e) { + // User press ESC + if (e.keyCode === 81) { + console.log(81); + this.props.cancel(); + } + if (e.keyCode === 13) { + console.log(13); + this.props.ok(); + } + } + + render() { + var { show, cancel, ok, image } = this.props; + setTimeout(() => { + document.querySelector('#imageInputHidden').focus(); + }, 1000); + + return ( + + + Send image ? + + + +
    + this.navigation(e)} id="imageInputHidden" style={{'zIndex': '-1', 'position': 'absolute', 'top': '-20px'}} /> + + +
    +
    +
    + ); + } +} diff --git a/src/js/pages/ConfirmImagePaste/style.css b/src/js/pages/ConfirmImagePaste/style.css new file mode 100644 index 0000000..bab3a99 --- /dev/null +++ b/src/js/pages/ConfirmImagePaste/style.css @@ -0,0 +1,73 @@ + +.container { + background: rgba(0, 0, 0, .9); + height: 100vh; + width: 100vw; + display: flex; + justify-content: center; + align-items: center; + flex-direction: column; + font-family: 'Roboto'; + font-size: 36px; + color: #fff; + font-weight: 100; + letter-spacing: 2px; + word-spacing: 4px; + + & button { + display: inline-block; + height: 36px; + background-color: rgba(99, 99, 99, 0); + font-family: 'Roboto'; + font-weight: 500; + color: rgba(33, 150, 243, .9); + line-height: 36px; + text-align: center; + letter-spacing: .4px; + padding: 0 16px; + border: 0; + text-transform: uppercase; + margin: 24px 12px; + font-size: 16px; + outline: 0; + cursor: pointer; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + transition: .2s; + } + + & button:hover { + background: rgba(99, 99, 99, .2); + } + + & img { + max-width: 70vw; + max-height: 60vh; + margin-top: 20px; + margin-bottom: 30px; + border: 12px solid #fff; + border-radius: 1px; + box-shadow: 0 0 20px rgba(0, 0, 0, .3); + } +} + +@media (width <= 800px) { + .container { + font-size: 26px; + word-spacing: 2px; + + & button { + height: 26px; + line-height: 26px; + padding: 0 12px; + margin: 24px 12px; + font-size: 14px; + } + + & img { + max-width: 54vw; + margin-top: 14px; + margin-bottom: 20px; + border: 6px solid #fff; + } + } +} diff --git a/src/js/pages/Contacts/index.js b/src/js/pages/Contacts/index.js new file mode 100644 index 0000000..128d0fb --- /dev/null +++ b/src/js/pages/Contacts/index.js @@ -0,0 +1,113 @@ + +import React, { Component } from 'react'; +import { observer, inject } from 'mobx-react'; +import clazz from 'classname'; +import randomColor from 'randomcolor'; + +import classes from './style.css'; + +@inject(stores => ({ + filter: stores.contacts.filter, + filtered: stores.contacts.filtered, + getContats: stores.contacts.getContats, + showUserinfo: stores.userinfo.toggle, +})) +@observer +export default class Contacts extends Component { + renderColumns(data, index) { + var list = data.filter((e, i) => i % 3 === index); + + return list.map((e, index) => { + return ( +
    +
    + + + {e.list.length} people + +
    + +
    + { + e.list.map((e, index) => { + return ( +
    this.props.showUserinfo(true, e)}> +
    + +
    +
    +

    +

    +

    +
    + ); + }) + } +
    +
    + ); + }); + } + + componentWillMount() { + this.props.filter(); + } + + render() { + var { query, result } = this.props.filtered; + + if (query && result.length === 0) { + return ( +
    +
    + +

    Can't find any people matching '{query}'

    +
    +
    + ); + } + + return ( +
    +
    +
    + { + this.renderColumns(result, 0) + } +
    +
    + { + this.renderColumns(result, 1) + } +
    +
    + { + this.renderColumns(result, 2) + } +
    +
    +
    + ); + } +} diff --git a/src/js/pages/Contacts/style.css b/src/js/pages/Contacts/style.css new file mode 100644 index 0000000..c3da49c --- /dev/null +++ b/src/js/pages/Contacts/style.css @@ -0,0 +1,183 @@ + +.columns { + display: flex; + padding: 30px 17px 0; + justify-content: space-between; +} + +.notfound { + display: flex; + height: 100vh; + width: 100vw; + justify-content: center; + align-items: center; + + & h1 { + margin-bottom: 25vh; + font-family: 'Roboto'; + font-weight: 100; + color: rgba(0, 0, 0, .8); + letter-spacing: 2px; + word-spacing: 4px; + } +} + +.inner { + text-align: center; + + & img { + width: 220px; + margin-bottom: 30px; + } +} + +.column { + width: 274px; +} + +.group { + width: 274px; + padding: 8px 0; + margin-bottom: 24px; + box-shadow: 0 0 10px 0 rgba(119, 119, 119, 50%); +} + +.header { + position: relative; + width: 140px; + height: 36px; + + & label { + position: absolute; + left: 12px; + bottom: 8px; + font-family: 'Helvetica Neue'; + font-size: 24px; + font-weight: 300; + color: #000; + } + + & span { + position: absolute; + right: 0; + bottom: 8px; + display: block; + font-family: 'Roboto'; + font-size: 12px; + color: #9b9b9b; + } +} + +.item { + display: flex; + height: 40px; + margin: 10px 0; + padding: 0 10px; + align-items: center; + cursor: pointer; + + & p { + transition: .2s; + } + + &:hover p { + color: #405de6 !important; + } + + & img { + margin-top: 3px; + margin-right: 19px; + border-radius: 32px; + } +} + +.avatar, +.info { + display: inline-block; +} + +.username, +.signature { + max-width: 200px; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; +} + +.username { + font-family: 'Helvetica'; + font-size: 14px; + color: #4a4a4a; + margin: 0; + margin-bottom: 4px; +} + +.signature { + font-family: 'Helvetica'; + font-size: 12px; + color: #777; + margin: 0; +} + +@media (width <= 800px) { + .columns { + padding: 20px 17px 0; + } + + .notfound { + & h1 { + word-spacing: 2px; + } + } + + .column { + width: 230px; + } + + .group { + width: 230px; + padding: 6px 0; + margin-bottom: 20px; + } + + .header { + width: 110px; + height: 26px; + + & label { + bottom: 6px; + font-size: 18px; + } + + & span { + font-size: 11px; + } + } + + .item { + height: 36px; + margin: 8px 0; + padding: 0 8px; + + & img { + margin-top: 4px; + margin-right: 14px; + } + } + + .avatar img { + width: 28px !important; + height: 28px !important; + border-radius: 28px; + } + + .username, + .signature { + max-width: 160px; + } + + .username { + font-size: 13px; + margin-bottom: 2px; + } +} diff --git a/src/js/pages/Footer/Contacts.js b/src/js/pages/Footer/Contacts.js new file mode 100644 index 0000000..316ca97 --- /dev/null +++ b/src/js/pages/Footer/Contacts.js @@ -0,0 +1,56 @@ + +import React, { Component } from 'react'; +import { inject } from 'mobx-react'; + +import classes from './style.css'; +import Switch from 'components/Switch'; + +@inject(stores => ({ + filter: stores.contacts.filter, + showGroup: stores.contacts.showGroup, + toggleGroup: stores.contacts.toggleGroup, +})) +export default class Filter extends Component { + // Improve filter performance + timer; + + doFilter(text = '') { + text = text.trim(); + + clearTimeout(this.timer); + this.timer = setTimeout(() => { + this.props.filter(text); + }, 300); + } + + handleShowGroup(e) { + this.props.toggleGroup(e.target.checked); + this.doFilter(this.refs.filter.value); + } + + componentWillUnmount() { + this.props.filter(); + } + + render() { + return ( +
    + this.doFilter(e.target.value)} + placeholder="Type something to search..." + ref="filter" + type="text" /> + +
    + +
    +
    + ); + } +} diff --git a/src/js/pages/Footer/Home.js b/src/js/pages/Footer/Home.js new file mode 100644 index 0000000..cdce43c --- /dev/null +++ b/src/js/pages/Footer/Home.js @@ -0,0 +1,37 @@ + +import React, { Component } from 'react'; +import { inject } from 'mobx-react'; + +import MessageInput from 'components/MessageInput'; + +@inject(stores => ({ + sendMessage: stores.chat.sendMessage, + user: stores.chat.user, + showMessage: stores.snackbar.showMessage, + me: stores.session.user, + confirmSendImage: async(image) => { + if (!stores.settings.confirmImagePaste) { + return true; + } + + var confirmed = await stores.confirmImagePaste.toggle(true, image); + return confirmed; + }, + process: stores.chat.process, +})) +export default class Message extends Component { + render() { + var { sendMessage, showMessage, user, me = {}, confirmSendImage, process } = this.props; + + return ( + + ); + } +} diff --git a/src/js/pages/Footer/Settings.js b/src/js/pages/Footer/Settings.js new file mode 100644 index 0000000..4621638 --- /dev/null +++ b/src/js/pages/Footer/Settings.js @@ -0,0 +1,28 @@ + +import React, { Component } from 'react'; + +import classes from './style.css'; + +export default class Placeholder extends Component { + render() { + return ( +
    + ); + } +} diff --git a/src/js/pages/Footer/index.js b/src/js/pages/Footer/index.js new file mode 100644 index 0000000..9d0a14b --- /dev/null +++ b/src/js/pages/Footer/index.js @@ -0,0 +1,65 @@ + +import React, { Component } from 'react'; +import { Link } from 'react-router-dom'; +import clazz from 'classname'; + +import classes from './style.css'; +import Home from './Home'; +import Contacts from './Contacts'; +import Settings from './Settings'; + +export default class Footer extends Component { + render() { + var pathname = this.props.location.pathname; + var component = { + '/': Home, + '/contacts': Contacts, + '/settings': Settings, + }[pathname]; + + return ( +
    + + +
    + { + React.createElement(component) + } +
    +
    + ); + } +} diff --git a/src/js/pages/Footer/style.css b/src/js/pages/Footer/style.css new file mode 100644 index 0000000..5628b65 --- /dev/null +++ b/src/js/pages/Footer/style.css @@ -0,0 +1,201 @@ + +:root { + --icon-color: #777; + --active: #34b7f1; + --shadow-color: #eaedea; +} + +.footer { + position: relative; + background: #fff; + box-shadow: inset 0 1px 0 0 var(--shadow-color); + z-index: 9; + + & nav { + display: flex; + width: calc(311px - 34px); + height: 60px; + padding: 17px 17px 0; + justify-content: space-between; + box-shadow: inset -1px 0 0 0 var(--shadow-color); + } + + & nav span { + display: block; + width: 24px; + height: 27px; + text-align: center; + cursor: pointer; + } + + & nav i { + color: var(--icon-color); + font-size: 24px; + cursor: pointer; + } + + & nav span:hover i { + color: var(--active) !important; + } +} + +.footer .active { + position: relative; + + &::after { + content: ''; + position: absolute; + bottom: 0; + left: 0; + height: 1px; + width: 100%; + background: var(--active); + } + + & i { + color: var(--active) !important; + } +} + +.right { + position: fixed; + bottom: 0; + right: 0; + width: calc(100% - 311px); +} + +.contacts { + position: relative; + display: flex; + height: 60px; + align-items: center; + justify-content: space-between; + + & input { + height: 60px; + width: calc(100% - 200px); + margin-left: 32px; + line-height: 60px; + border: 0; + background: 0; + color: #333; + font-size: 14px; + outline: 0; + } + + & label { + display: flex; + height: 23px; + line-height: 23px; + } + + & .action { + margin-right: 17px; + display: flex; + justify-content: space-between; + } +} + +.settings { + display: flex; + height: 60px; + text-align: right; + justify-content: flex-end; + align-items: center; + + & .button { + position: relative; + margin-right: 17px; + width: 166px; + color: rgba(0, 0, 0, .8); + font-size: 14px; + padding: 9px 8px; + font-family: 'Roboto'; + border: 0; + border-radius: 2px; + background: 0; + outline: 0; + text-transform: uppercase; + text-align: left; + cursor: pointer; + text-decoration: none; + transform: translateY(4px); + transition: .2s; + + &:hover { + background: color(var(--shadow-color) alpha(-50%)); + } + } + + + & .button i { + position: absolute; + right: 14px; + top: 50%; + transform: translateY(-50%); + font-size: 20px; + } +} + +.options { + display: inline-block; + margin-right: 12px; + font-family: 'Roboto'; + font-size: 14px; + color: rgba(0, 0, 0, .8); + text-transform: uppercase; +} + +@media (width <= 800px) { + .footer { + & nav { + width: calc(280px - 34px); + padding: 14px 17px 0; + height: 46px; + } + + & nav span { + width: 20px; + height: 20px; + } + + & nav i { + font-size: 16px; + } + } + + .right { + width: calc(100% - 280px); + } + + .contacts { + height: 46px; + + & input { + height: 46px; + width: calc(100% - 200px); + margin-left: 20px; + line-height: 46px; + } + } + + .settings { + height: 46px; + + & .button { + margin-right: 8px; + width: 130px; + font-size: 12px; + padding: 6px 8px; + transform: translateY(0); + } + + & .button i { + font-size: 16px; + } + } + + .options { + font-size: 12px; + } +} diff --git a/src/js/pages/Forward/index.js b/src/js/pages/Forward/index.js new file mode 100644 index 0000000..691ba08 --- /dev/null +++ b/src/js/pages/Forward/index.js @@ -0,0 +1,112 @@ + +import React, { Component } from 'react'; +import { Modal, ModalBody } from 'components/Modal'; +import { inject, observer } from 'mobx-react'; + +import classes from './style.css'; +import UserList from 'components/UserList'; + +@inject(stores => ({ + show: stores.forward.show, + searching: stores.forward.query, + getList: () => { + var { forward, contacts } = stores; + + if (forward.query) { + return forward.list; + } + + return contacts.memberList.filter(e => e.UserName !== stores.session.user.User.UserName); + }, + getUser: (userid) => { + return stores.contacts.memberList.find(e => e.UserName === userid); + }, + search: stores.forward.search, + send: (userids) => stores.forward.send(userids), + close: () => stores.forward.toggle(false), +})) +@observer +export default class Forward extends Component { + state = { + selected: [], + }; + + close() { + this.props.close(); + this.setState({ + selected: [], + }); + } + + send(userids) { + userids.map(e => { + this.props.send(e); + }); + this.close(); + } + + renderList() { + var self = this; + var { show, searching, search, getList } = this.props; + + if (!show) { + return false; + } + + return ( + + ); + } + + render() { + return ( + this.close()} + show={this.props.show}> + + Forward Message + +
    + { + this.state.selected.map((e, index) => { + var user = this.props.getUser(e); + return ( + this.refs.users.removeSelected(e)} + src={user.HeadImgUrl} /> + ); + }) + } +
    + + {this.renderList()} + +
    + + + +
    +
    +
    + ); + } +} diff --git a/src/js/pages/Forward/style.css b/src/js/pages/Forward/style.css new file mode 100644 index 0000000..487a7ff --- /dev/null +++ b/src/js/pages/Forward/style.css @@ -0,0 +1,103 @@ + +.container { + background: #fff; + height: 100vh; + width: 100vw; + display: flex; + justify-content: center; + align-items: center; + flex-direction: column; + font-family: 'Roboto'; + font-size: 36px; + color: #000; + font-weight: 100; + letter-spacing: 2px; + word-spacing: 4px; + + & input { + height: 64px; + line-height: 64px; + width: 80%; + text-align: center; + border: none; + background: none; + outline: 0; + font-size: 32px; + font-weight: 100; + } + + & button { + display: inline-block; + height: 36px; + background-color: rgba(99, 99, 99, 0); + font-family: 'Roboto'; + font-weight: 500; + color: rgba(33, 150, 243, .9); + line-height: 36px; + text-align: center; + letter-spacing: .4px; + padding: 0 16px; + border: 0; + text-transform: uppercase; + margin: 0 12px; + font-size: 16px; + outline: 0; + cursor: pointer; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + transition: .2s; + } + + & button:disabled { + background: rgba(99, 99, 99, .2); + opacity: .5; + } + + & button:hover { + background: rgba(99, 99, 99, .2); + } +} + +.avatars { + min-height: 20px; + + & img { + height: 24px; + width: 24px; + margin: 12px 4px; + box-shadow: 0 0 8px 0 rgba(0, 0, 0, .3); + cursor: pointer; + } +} + +@media (width <= 800px) { + .container { + font-size: 26px; + letter-spacing: 2px; + word-spacing: 2px; + + & input { + height: 46px; + line-height: 46px; + font-size: 24px; + } + + & button { + height: 26px; + line-height: 26px; + letter-spacing: .4px; + padding: 0 12px; + margin: 0 10px; + font-size: 14px; + } + } + + .avatars { + min-height: 20px; + + & img { + height: 24px; + width: 24px; + margin: 12px 4px; + } + } +} diff --git a/src/js/pages/Header/index.js b/src/js/pages/Header/index.js new file mode 100644 index 0000000..8a11dc7 --- /dev/null +++ b/src/js/pages/Header/index.js @@ -0,0 +1,27 @@ + +import React, { Component } from 'react'; + +import classes from './style.css'; + +export default class Header extends Component { + getTitle() { + switch (this.props.location.pathname) { + case '/contacts': + return 'Contacts - WeWeChat'; + + case '/settings': + return 'Settings - WeWeChat'; + + default: + return 'WeWeChat'; + } + } + + render() { + return ( +
    +

    {this.getTitle()}

    +
    + ); + } +} diff --git a/src/js/pages/Header/style.css b/src/js/pages/Header/style.css new file mode 100644 index 0000000..4f25a84 --- /dev/null +++ b/src/js/pages/Header/style.css @@ -0,0 +1,23 @@ + +.container h1 { + height: 40px; + line-height: 40px; + margin: 0; + padding: 0; + font-size: 14px; + font-family: "system-ui"; + font-weight: normal; + width: 100%; + color: #777; + text-align: center; + background: rgba(255, 255, 255, 1); + -webkit-user-select: none; + -webkit-app-region: drag; + cursor: default; +} + +@media (width <= 800px) { + .container h1 { + font-size: 12px; + } +} diff --git a/src/js/pages/Home/ChatContent/index.js b/src/js/pages/Home/ChatContent/index.js new file mode 100644 index 0000000..4969e65 --- /dev/null +++ b/src/js/pages/Home/ChatContent/index.js @@ -0,0 +1,686 @@ + +import React, { Component } from 'react'; +import { inject, observer } from 'mobx-react'; +import { ipcRenderer, remote } from 'electron'; +import clazz from 'classname'; +import moment from 'moment'; +import axios from 'axios'; + +import classes from './style.css'; +import Avatar from 'components/Avatar'; +import helper from 'utils/helper'; +import { parser as emojiParse } from 'utils/emoji'; +import { on, off } from 'utils/event'; + +@inject(stores => ({ + user: stores.chat.user, + sticky: stores.chat.sticky, + empty: stores.chat.empty, + removeChat: stores.chat.removeChat, + messages: stores.chat.messages, + loading: stores.session.loading, + reset: () => { + stores.chat.user = false; + }, + isFriend: (id) => { + var user = stores.contacts.memberList.find(e => e.UserName === id) || {}; + return helper.isContact(user); + }, + showUserinfo: async(isme, user) => { + var caniremove = helper.isChatRoomOwner(stores.chat.user); + + if (isme) { + user = stores.session.user.User; + } else { + stores.contacts.memberList.find(e => { + // Try to find contact in your contacts + if (e.UserName === user.UserName) { + return (user = e); + } + }); + } + + stores.userinfo.toggle(true, user, caniremove); + }, + getMessage: (messageid) => { + var list = stores.chat.messages.get(stores.chat.user.UserName); + return list.data.find(e => e.MsgId === messageid); + }, + deleteMessage: (messageid) => { + stores.chat.deleteMessage(stores.chat.user.UserName, messageid); + }, + showMembers: (user) => { + if (helper.isChatRoom(user.UserName)) { + stores.members.toggle(true, user); + } + }, + showContact: (userid) => { + var user = stores.contacts.memberList.find(e => e.UserName === userid); + stores.userinfo.toggle(true, user); + }, + showForward: (message) => stores.forward.toggle(true, message), + parseMessage: (message, from) => { + var isChatRoom = message.isme ? false : helper.isChatRoom(message.FromUserName); + var user = from; + + message = Object.assign({}, message); + + if (isChatRoom) { + let matchs = message.Content.split(':
    '); + + // Get the newest chat room infomation + from = stores.contacts.memberList.find(e => from.UserName === e.UserName); + user = from.MemberList.find(e => e.UserName === matchs[0]); + message.Content = matchs[1]; + } + + // If user is null, that mean user has been removed from this chat room + return { message, user }; + }, + showAddFriend: (user) => stores.addfriend.toggle(true, user), + recallMessage: stores.chat.recallMessage, + downloads: stores.settings.downloads, + rememberConversation: stores.settings.rememberConversation, + showConversation: stores.chat.showConversation, + toggleConversation: stores.chat.toggleConversation, +})) +@observer +export default class ChatContent extends Component { + getMessageContent(message) { + var uploading = message.uploading; + switch (message.MsgType) { + case 1: + if (message.location) { + return ` + + + `; + } + // Text message + return emojiParse(message.Content); + case 3: + // Image + let image = message.image; + + if (uploading) { + return ` +
    + + +
    + `; + } + return ``; + case 34: + /* eslint-disable */ + // Voice + let voice = message.voice; + let times = message.VoiceLength; + let width = 40 + 7 * (times / 2000); + let seconds = 0; + /* eslint-enable */ + + if (times < 60 * 1000) { + seconds = Math.ceil(times / 1000); + } + + return ` +
    + + + ${seconds || '60+'}" + + + +
    + `; + case 47: + case 49 + 8: + // External emoji + let emoji = message.emoji; + + if (emoji) { + if (uploading) { + return ` +
    + + +
    + `; + } + return ``; + } + return ` +
    +
    + Send an emoji, view it on mobile +
    + `; + + case 42: + // Contact Card + let contact = message.contact; + let isFriend = this.props.isFriend(contact.UserName); + let html = ` +
    + + +
    +

    ${contact.name}

    +

    ${contact.address}

    +
    + `; + + if (!isFriend) { + html += ` + + `; + } + + html += '
    '; + + return html; + + case 43: + // Video message + let video = message.video; + + if (uploading) { + return ` +
    + + + +
    + `; + } + + if (!video) { + console.error('Invalid video message: %o', message); + + return ` + Receive an invalid video message, please see the console output. + `; + } + + return ` +